Skip to content

Update unit.yaml

Update unit.yaml #1

Workflow file for this run

name: Unit test
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 12 * * 4'
jobs:
unit-test:
name: Unit test
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm run test:unit