Skip to content

Bump github/codeql-action from 2 to 3 (#196) #650

Bump github/codeql-action from 2 to 3 (#196)

Bump github/codeql-action from 2 to 3 (#196) #650

Workflow file for this run

name: Tests
on: [push, pull_request, workflow_dispatch]
env:
FORCE_COLOR: 2
NODE_COV: 18 # The Node.js version to run coveralls on
jobs:
test:
name: Node ${{ matrix.node }} - ${{ matrix.architecture }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [14.18, 16, 18, 20]
java: [17]
architecture: [x64]
include:
- os: macos-latest
node: 18
java: 17
architecture: x64
- os: windows-latest
node: 18
java: 17
architecture: x64
- os: windows-latest
node: 18
java: 17
architecture: x86
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
architecture: ${{ matrix.architecture }}
cache: npm
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: "temurin"
architecture: ${{ matrix.architecture }}
java-version: ${{ matrix.java }}
- name: Install npm dependencies
run: npm ci
- name: Run full tests
run: npm run test:coverage
if: "!startsWith(matrix.os, 'windows')"
- name: Run tests
run: npm run mocha
if: startsWith(matrix.os, 'windows')
- name: Run Coveralls
uses: coverallsapp/github-action@v2
if: startsWith(matrix.os, 'ubuntu') && matrix.node == env.NODE_COV
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"