add many more prisma augments #267
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: tests | |
on: | |
push: | |
branches: | |
- '**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/[email protected] | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version-file: '.nvmrc' | |
# handle NPM / Node.js repeatedly bricking their npm setup on Windows | |
- name: Fix npm on Windows | |
if: runner.os == 'Windows' | |
shell: bash | |
run: | | |
npm i npm | |
- name: run test | |
shell: bash | |
run: | | |
npm ci | |
npx playwright install --with-deps | |
npm run test:all |