Skip to content

Upgrade TypeScript to v6 #365

Upgrade TypeScript to v6

Upgrade TypeScript to v6 #365

name: Build and test on PR
'on': pull_request
jobs:
build:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- run: npm run typecheck
- run: npm run build
- run: npm run test:app
- run: npm run cy:test
build_functions:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: cd functions && npm ci
- run: cd functions && npm test