Remove chrome #3080
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'yarn' | |
- name: Install Playwright dependencies | |
run: yarn install --frozen-lockfile | |
- run: npx playwright install-deps | |
- run: yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Unit Test | |
run: yarn test:unit | |
- name: Chrome Test | |
run: yarn test:browser --project=chrome | |
- name: Firefox Test | |
run: yarn test:browser --project=firefox | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: turbo-dist | |
path: dist/* |