Skip to content

👷 Add matrix to test run #4

👷 Add matrix to test run

👷 Add matrix to test run #4

Workflow file for this run

# This workflow is performing prettier and lint checks on it's base code using it's own configuration

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

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: strategy
name: Test
on: [push]
jobs:
strategy:
matrix:
version: [ 18, 20, 22 ]
run-eslint-and-prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run build
- run: npm run eslint
- run: npm run prettier