Skip to content

V11 Updates

V11 Updates #121

Workflow file for this run

name: Pull Request into Develop
on:
# Triggers the workflow on a pull request pointed at develop.
pull_request:
branches:
- "develop"
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 19
uses: actions/setup-node@v3
with:
node-version: 19
cache: "npm"
- name: Install Node modules
run: npm ci
- name: Linting
run: npm run lint
- name: Unit & Integration tests
run: npm test