Skip to content

Fix github action workflow #1

Fix github action workflow

Fix github action workflow #1

Workflow file for this run

name: Build and Jest Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Run Jest tests
run: npm test