Skip to content

[Snyk] Security upgrade express from 4.17.1 to 4.20.0 #78

[Snyk] Security upgrade express from 4.17.1 to 4.20.0

[Snyk] Security upgrade express from 4.17.1 to 4.20.0 #78

Workflow file for this run

name: test
on:
push:
branches:
- main
- dev
- release/*
tags-ignore:
- v*
paths-ignore:
- "docs/**"
- "**/README.md"
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "::set-output name=version::$(cat .nvmrc)"
id: nvmrc
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvmrc.outputs.version }}"
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test