You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
407 B

name: Test js
on:
workflow_call:
workflow_dispatch:
jobs:
test-js:
name: Javascript
runs-on: macos-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node
uses: actions/setup-node@v4
- name: Install npm dependencies
run: yarn install --frozen-lockfile
- name: Run unit tests
run: yarn test