Downgraded playwright #13
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
name: tests | |
on: | |
push: | |
branches: main | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn run playwright install --with-deps | |
- run: yarn build | |
- name: Unit Test | |
run: yarn test:unit | |
chrome: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn run playwright install --with-deps | |
- run: yarn build | |
- name: Set Chrome Version | |
run: | | |
CHROMEVER="$(chromedriver --version | cut -d' ' -f2)" | |
echo "Actions ChromeDriver is $CHROMEVER" | |
echo "CHROMEVER=${CHROMEVER}" >> $GITHUB_ENV | |
- name: Chrome Test | |
run: yarn test:browser --project=chrome | |
firefox: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn build | |
- run: yarn run playwright install --with-deps | |
- name: Firefox Test | |
run: yarn test:browser --project=firefox | |