Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

chore(deps): update all dependencies #275

chore(deps): update all dependencies

chore(deps): update all dependencies #275

Workflow file for this run

name: Verify PRs
on:
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
verification:
name: Test & Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: "package.json"
cache: "npm"
- name: Install dependencies
run: npm --no-update-notifier --no-fund --no-audit ci
- name: Lint
run: npm run lint
- name: Unit Test
run: npm test
- name: Build
run: npm run build