V11 Updates #119
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |