Skip to content

always run tests on push #1

always run tests on push

always run tests on push #1

Workflow file for this run

name: Continuous Integration
on:
push:
jobs:
run_tests:
name: Run tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Install dependencies
run: npm install
-
name: Run tests
run: npm run test