diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index b697b96..834d469 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -6,10 +6,10 @@ on: jobs: lint: name: Lint - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: - node-version: [ 22 ] + node-version: [22] timeout-minutes: 5 steps: @@ -42,7 +42,10 @@ jobs: build: name: Build needs: lint - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 + strategy: + matrix: + node-version: [22] timeout-minutes: 5 steps: @@ -66,7 +69,10 @@ jobs: test: name: Test - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 + strategy: + matrix: + node-version: [22] timeout-minutes: 10 steps: - name: Checkout diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index 306662e..38894e5 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -17,10 +17,10 @@ jobs: name: Create pull request or publish needs: build-and-test permissions: write-all - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: - node-version: [ 22 ] + node-version: [22] timeout-minutes: 5 steps: