Skip to content

fix: links

fix: links #243

Workflow file for this run

name: Build & Unit Tests
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
- future
- staging
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install project dependencies
run: pnpm install --frozen-lockfile
- name: "Run Build"
run: pnpm build
- name: Run Unit Tests
run: pnpm test:unit