chore(deps): update dependency prettier to v3 #787
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: test | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v2 | |
- name: 'Install packages' | |
run: pnpm install | |
- name: 'Lint' | |
run: pnpm run lint | |
- name: 'TypeScript' | |
run: pnpm run test:types | |
- name: 'Build' | |
run: pnpm run build | |
- name: Cypress PNPM Patch | |
run: cp pnpm-lock.yaml package-lock.json | |
- uses: cypress-io/github-action@v4 | |
with: | |
# env: PORT=4000 | |
build: pnpm run build | |
start: pnpm run start |