Skip to content

Add commented out run-build and run-command step to generated workflow #30

Add commented out run-build and run-command step to generated workflow

Add commented out run-build and run-command step to generated workflow #30

Workflow file for this run

name: Test
on: [pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
- name: Run tests
run: npm test