Skip to content

chore: bump the npm_and_yarn group across 1 directory with 3 updates … #286

chore: bump the npm_and_yarn group across 1 directory with 3 updates …

chore: bump the npm_and_yarn group across 1 directory with 3 updates … #286

Workflow file for this run

name: Test (Unit)
on:
pull_request:
types: [synchronize, opened, reopened]
push:
branches:
- main
- production
permissions:
contents: read
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Unit Tests
run: npm run test:unit