update astro-crank package.json #682
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: Crank CI Workflow | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- run: npm install --frozen-lockfile | |
- run: npm run typecheck | |
- run: npm run lint | |
- run: npm run build | |
- run: npm run test -- --browser chromium | |
- run: npm run test -- --browser firefox | |
- run: npx playwright install-deps webkit | |
- run: npm run test -- --browser webkit |