Skip to content

🔧 fix test workflow #12

🔧 fix test workflow

🔧 fix test workflow #12

Workflow file for this run

name: Test
on: [push, pull_request, workflow_call]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Run test
run: npm test