Skip to content

CI

CI #37

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
schedule:
# Run weekly, 00:00 on Friday
- cron: '0 0 * * 5'
workflow_dispatch:
jobs:
test:
name: npm test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm test