Skip to content

12.1.6-beta.1

12.1.6-beta.1 #14

Workflow file for this run

name: Unit Test
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Run Jest
run: npm run jest