Skip to content

Update action.yml #7

Update action.yml

Update action.yml #7

Workflow file for this run

name: Run unit tests
on:
workflow_dispatch:
push:
branches:
- main
jobs:
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Test
run: npm run test