Skip to content

feat: update notification #331

feat: update notification

feat: update notification #331

Workflow file for this run

name: Runs All Unit tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
standalone: 'true'
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Lint
run: pnpm run lint
- name: Execute Unit tests
run: pnpm run test