update to latest actions/setup-node to see if windows issue is fixed … #217
Workflow file for this run
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: Build and Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js latest | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: install | |
run: | | |
npm i | |
npx playwright install | |
- name: check formatting | |
run: | | |
npm run prettier:check | |
- name: build | |
run: | | |
npm run clean | |
npm run build | |
- name: test | |
run: | | |
npm test | |
- name: check repo is clean | |
# skip this check in windows for now, as the build outputs may get slightly modified in Windows, which we want to fix. | |
if: runner.os != 'Windows' | |
run: | | |
git add . && git diff --quiet && git diff --cached --quiet | |
env: | |
CI: true |