Skip to content

CI

CI #268

Workflow file for this run

name: CI
on:
push: ~
pull_request: ~
schedule:
- cron: '0 12 * * *'
jobs:
build_and_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Build & lint & test
run: npm run all