Skip to content

Squashed history

Squashed history #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./workers
steps:
- uses: actions/checkout@v3
- name: Use Node.js version
uses: actions/setup-node@v3
with:
node-version: 20.10.0
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run build
- run: npm test