Skip to content

chore(deps): bump tough-cookie from 4.1.2 to 4.1.3 #92

chore(deps): bump tough-cookie from 4.1.2 to 4.1.3

chore(deps): bump tough-cookie from 4.1.2 to 4.1.3 #92

Workflow file for this run

name: Build & Test Mantis UI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.0.1
with:
version: 6.29.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint files
run: pnpm lint
- name: Typecheck files
run: pnpm typecheck
- name: Build codebase
run: pnpm build