Skip to content

asdkjhasd

asdkjhasd #27

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: ['master']
jobs:
test:
name: Run tests ('${{ matrix.node_version }}')
if: |
!startsWith(github.event.pull_request.title, '[skip-ci]') &&
!startsWith(github.event.pull_request.title, '[skip-package-ci]')
runs-on: ubuntu-22.04
env:
LAST_KNOWN_GOOD_NODE_VERSION: 16
strategy:
matrix:

Check failure on line 17 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
node_version: [ '${{ vars.NODE_VERSION }}', ${{ env.LAST_KNOWN_GOOD_NODE_VERSION }} ]
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '${{ matrix.node_version }}'
- name: Install Python setuptools
run: python3 -m pip install setuptools
- name: Install Dependencies
run: npm install
- name: Run tests
run: npm run test