Skip to content

refactor: standardize test filenames for fragile-goods (#440) #227

refactor: standardize test filenames for fragile-goods (#440)

refactor: standardize test filenames for fragile-goods (#440) #227

Workflow file for this run

name: Build

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

(Line: 15, Col: 9): Required property is missing: runs-on, (Line: 19, Col: 7): Unexpected value 'matrix', (Line: 19, Col: 7): There's not enough info to determine what you meant. Add one of these properties: cancel-timeout-minutes, container, continue-on-error, defaults, env, environment, outputs, runs-on, secrets, services, snapshot, steps, timeout-minutes, uses, with, (Line: 32, Col: 7): A sequence was not expected
on:
push:
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build:
name: Unit Tests
timeout-minutes: 15
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
os:
- ubuntu-latest
- windows-latest
- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- name: git checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test