Skip to content

Update actions/upload-artifact action to v6 #553

Update actions/upload-artifact action to v6

Update actions/upload-artifact action to v6 #553

Workflow file for this run

name: Test
on: [push, pull_request]
permissions: read-all
jobs:
test_linux:
name: Test - Ubuntu Node 24
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- name: Checkout Code
uses: actions/checkout@v6
- uses: actions/[email protected]
with:
node-version: "${{ matrix.node-version }}"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and link
run: npm ci && npm link
- name: Run tests
run: npm run test
test_windows:
name: Test - Windows
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
- uses: actions/[email protected]
with:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and link
run: npm ci && npm link
- name: Run tests
run: npm run test
test_mac:
name: Test - MacOs
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
- uses: actions/[email protected]
with:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and link
run: npm ci && npm link
- name: Run tests
run: npm run test