Skip to content

[Snyk] Security upgrade next from 14.2.3 to 14.2.7 #66

[Snyk] Security upgrade next from 14.2.3 to 14.2.7

[Snyk] Security upgrade next from 14.2.3 to 14.2.7 #66

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
name: ci
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
id: yarn-cache
with:
path: |
~/cache
!~/cache/exclude
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Linting
run: yarn lint
- name: Build
run: yarn build
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: yarn build
start: yarn start