Bump @types/chai from 4.3.6 to 4.3.7 #456
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
workflow_dispatch: # Allows the workflow to be triggered manually | |
env: | |
JOB_NODE_VERSION: '16.19.0' # Chosen to match what is used internally by the Heroku CLI | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.JOB_NODE_VERSION }} | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install | |
- name: Run eslint | |
run: yarn lint | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.JOB_NODE_VERSION }} | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install | |
- name: Run unit tests | |
run: yarn test |