Skip to content

Node.js CI

Node.js CI #1755

Workflow file for this run

# This workflow will install node dependencies (and cache them) and run node.js tests
name: Node.js CI
on: [push]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Setup env file
run: cp .env.example .env
- run: npm install
- run: npm run test