Update actions/upload-artifact action to v6 #553
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |