diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1fa03e0..3a8617f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,6 +2,8 @@ on: [push] name: Tests +permissions: {} + jobs: build: strategy: @@ -10,12 +12,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + persist-credentials: false - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 22.x - name: Install root project dependencies run: npm install - name: Build and run tests - run: npm test \ No newline at end of file + run: npm test diff --git a/build/pipeline.yml b/build/pipeline.yml index cab0283..a60ae8b 100644 --- a/build/pipeline.yml +++ b/build/pipeline.yml @@ -34,13 +34,13 @@ extends: testPlatforms: - name: Linux nodeVersions: - - 18.x + - 22.x - name: MacOS nodeVersions: - - 18.x + - 22.x - name: Windows nodeVersions: - - 18.x + - 22.x testSteps: - script: npm ci