Skip to content

Commit

Permalink
Merge pull request #533 from systemli/Update-CI-Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
0x46616c6b authored Oct 19, 2023
2 parents e8179d0 + d757e93 commit 0376d12
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
test:
name: Test
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -33,11 +33,11 @@ jobs:

build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [test]
strategy:
matrix:
node-version: ["16", "18", "current"]
node-version: ["18", "20", "current"]

steps:
- name: Checkout
Expand All @@ -58,7 +58,7 @@ jobs:
automerge:
name: Merge Automatically
needs: [test, build]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

permissions:
pull-requests: write
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
prettier:
name: Prettier
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -32,15 +32,15 @@ jobs:

eslint:
name: ESLint
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
cache: "yarn"

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
release:
name: Update Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Publish Release
uses: release-drafter/release-drafter@v5
Expand Down

0 comments on commit 0376d12

Please sign in to comment.