Skip to content

fix(security): patch vulnerable packages #17

fix(security): patch vulnerable packages

fix(security): patch vulnerable packages #17

Workflow file for this run

name: Verify
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
env:
CI: true
steps:
# Checkout project repository
- name: Checkout
uses: actions/checkout@v3
# Setup Node.js
- name: Setup Node.js
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
node-version: 14
cache: 'yarn'
# Install dependencies
- name: Install Dependencies
env:
HUSKY_SKIP_INSTALL: true # Skip install of Husky
run: yarn install --frozen-lockfile
# Clean
- name: Clean
run: yarn clean
# Lint
- name: Run eslint
run: yarn lint
# Tests
- name: Run tests
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
# Build
- name: Run build
run: yarn build