Skip to content

Move JS tests in its own GitHub workflow #1

Move JS tests in its own GitHub workflow

Move JS tests in its own GitHub workflow #1

Workflow file for this run

name: "JS Tests"
on: ["push", "pull_request"]
jobs:
js-tests:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- name: "Installation of node"
uses: "actions/setup-node@v3"
with:
node-version: '20.5.1'
- name: "yarn install"
run: "yarn install"
- name: "Run webpack"
run: "yarn dev"
- name: "Run JS tests"
run: "yarn jest"