Skip to content

Update Node.js to v22.13.0 (#27) #172

Update Node.js to v22.13.0 (#27)

Update Node.js to v22.13.0 (#27) #172

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Typecheck
run: npm run typecheck
- name: Build
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 3
command: npm run build
env:
SOURCE_API_URL: ${{ vars.SOURCE_API_URL }}
TZ: ${{ vars.TZ }}