-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from cs278/polyfill-nightmare-redux
Workaround polyfill not being loaded
- Loading branch information
Showing
6 changed files
with
69 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Smoke Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
php: | ||
- '7.4' | ||
- '8.0' | ||
deps: | ||
- highest | ||
- lowest | ||
fail-fast: true | ||
name: PHP ${{ matrix.php }} / ${{ matrix.deps }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: shivammathur/setup-php@4067ce8b814db5bfc731c8906aa3034f28911e9f | ||
with: | ||
php-version: ${{ matrix.php }} | ||
- name: Cache dependencies | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.composer/cache | ||
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
- name: Enable assertions | ||
run: echo 'zend.assertions=1' | sudo tee /etc/php/${{ matrix.php }}/cli/conf.d/assert.ini >/dev/null | ||
- name: "Issue #18" | ||
run: | | ||
export COMPOSER_CACHE_DIR="$(composer global config cache-dir)" | ||
export COMPOSER_HOME="$(mktemp -d)" | ||
composer global config repositories.0 path "$(pwd)" | ||
composer global require cs278/composer-audit:@dev | ||
cd "$(mktemp -d)" | ||
composer require --no-install cs278/mktemp | ||
composer audit -vvv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters