Skip to content

[Snyk] Upgrade express from 4.21.2 to 4.22.1 #35

[Snyk] Upgrade express from 4.21.2 to 4.22.1

[Snyk] Upgrade express from 4.21.2 to 4.22.1 #35

Workflow file for this run

name: CI
on:
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '16' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2.3.4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn
- name: Run Lint
run: yarn lint
- name: Run Test code
run: yarn test
- name: Build module
run: yarn build