Skip to content

Commit

Permalink
gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuripetusko committed Aug 19, 2024
1 parent 1ded395 commit 095fc25
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 095fc25

Please sign in to comment.