Skip to content

CI

CI #1191

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
# do this every day at 7AM UTC
- cron: "0 7 * * *"
jobs:
build:
name: test ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
npm ci
npm run addTypeScriptVersions
npm run updateCompilerFiles
npm run test
npm run predeploy
- name: Deploy
if: github.ref == 'refs/heads/main'
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
single-commit: true