Skip to content

Merge pull request #2 from FreeMason9224/snyk-upgrade-fb59389c4fca8a4… #13

Merge pull request #2 from FreeMason9224/snyk-upgrade-fb59389c4fca8a4…

Merge pull request #2 from FreeMason9224/snyk-upgrade-fb59389c4fca8a4… #13

name: Basic validation
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- main
- releases/*
paths-ignore:
- '**.md'
jobs:
call-basic-validation:
name: Basic validation
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main
with:
node-version: '20.x'
jobs:

Check failure on line 20 in .github/workflows/basic-validation.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/basic-validation.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- node-version: [14, 16, 18]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test