Skip to content

fix: correct npm script commands in automated tests workflow #4

fix: correct npm script commands in automated tests workflow

fix: correct npm script commands in automated tests workflow #4

name: Automated Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-slim
timeout-minutes: 10
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run test:unit