Skip to content

CI

CI #1301

Workflow file for this run

name: CI
on:
schedule:
# once per day
- cron: 0 0 * * *
push:
branches:
- development
- master
pull_request:
branches:
- development
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build # change to test once we remake tests with static page
env:
CI: true