Skip to content

build(deps-dev): Bump @types/express from 4.17.14 to 4.17.17 #1159

build(deps-dev): Bump @types/express from 4.17.14 to 4.17.17

build(deps-dev): Bump @types/express from 4.17.14 to 4.17.17 #1159

Workflow file for this run

name: PR checker
on:
pull_request:
types:
- opened
- edited
- synchronize
push:
branches:
- main
# This is to avoid running multiple actions when a PR is updated repeatedly. See
# https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Cache node modules
id: cache-node
uses: actions/[email protected]
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint:ci
- name: Types
run: npm run types:check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Cache node modules
id: cache-node
uses: actions/[email protected]
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm ci
- name: Tests
run: npm run test