Skip to content

CI: Temporarily enable testing on pushes to this (or any) branch #27

CI: Temporarily enable testing on pushes to this (or any) branch

CI: Temporarily enable testing on pushes to this (or any) branch #27

Workflow file for this run

name: Test
on:
pull_request:
push:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
with:
fetch-depth: 0
# Make sure we get all commits, since testing uses the local git info
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm run test