Skip to content

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/[email protected]
- name: Setup node.js
uses: actions/[email protected]
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Check types
run: npm run check
- name: Build
run: npm run build
- name: Test
run: npm test