Skip to content

Auto-update jsrepository: axios | GHSA-42h9-826w-cgv3, GHSA-7q8q-rj6j-mhjq, GHSA-f4gw-2p7v-4548, GHSA-gcfj-64vw-6mp9, GHSA-hcpx-6fm6-wx23 (+5 more) #624

Auto-update jsrepository: axios | GHSA-42h9-826w-cgv3, GHSA-7q8q-rj6j-mhjq, GHSA-f4gw-2p7v-4548, GHSA-gcfj-64vw-6mp9, GHSA-hcpx-6fm6-wx23 (+5 more)

Auto-update jsrepository: axios | GHSA-42h9-826w-cgv3, GHSA-7q8q-rj6j-mhjq, GHSA-f4gw-2p7v-4548, GHSA-gcfj-64vw-6mp9, GHSA-hcpx-6fm6-wx23 (+5 more) #624

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [26.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
working-directory: node
- run: npm run build
working-directory: node
- run: npm test
working-directory: node
- run: ./validate
working-directory: repository
- name: Restore cached data for test-detection
uses: actions/cache@v4
id: cache-testdata
with:
path: repository/tmp
key: ${{ runner.os }}-test-detection-${{ github.sha }}
restore-keys: |
${{ runner.os }}-test-detection-
- run: ./test-detection.js
working-directory: repository