Skip to content

Update version to v4.0.0 in package json #38

Update version to v4.0.0 in package json

Update version to v4.0.0 in package json #38

Workflow file for this run

name: "Test (test)"
on:
# The tests will be run on the main branch as part of the container build workflow.
push:
branches:
- "main"
pull_request:
# Enable running this workflow from the container build workflow:
workflow_call:
jobs:
test:
name: "Run tests"
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository"
uses: "actions/checkout@v3"
- name: "Setup NodeJS"
uses: "actions/setup-node@v3"
with:
node-version: "14.x"
cache: "npm"
- name: "Install locked JavaScript dependencies"
run: "npm ci"
- name: "Run linter(s)"
run: "npm run lint"
- name: "Run tests"
run: "npm run test"