Skip to content

chore(ci): remove node 8.x version, add node versions 18, 20, 22 #424

chore(ci): remove node 8.x version, add node versions 18, 20, 22

chore(ci): remove node 8.x version, add node versions 18, 20, 22 #424

Workflow file for this run

name: windows tests
on: [push, pull_request]
jobs:
test:
runs-on: windows-latest
strategy:
matrix:
node-version: [10.x, 12.x, 18.x, 20.x, 22.x]
steps:
- name: Checkout Project
uses: actions/checkout@3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Lint Files
run: npm run lint
- name: Run Tests and Coverage
env:
CI: true
run: npm run test-cover
- name: Send Coverage to Coveralls
uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
path-to-lcov: ./coverage/lcov.info
finish:
needs: test
if: $

Check failure on line 45 in .github/workflows/windows-tests.yml

View workflow run for this annotation

GitHub Actions / windows tests

Invalid workflow file

The workflow is not valid. .github/workflows/windows-tests.yml (Line: 45, Col: 9): Unexpected symbol: '$'. Located at position 1 within expression: $
runs-on: ubuntu-latest
steps:
- name: Close Coveralls Parallel Build
uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true