Skip to content

Commit

Permalink
ci: update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Nov 6, 2023
1 parent 110f14a commit 1759f19
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
27 changes: 12 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18

- run: corepack enable
cache: pnpm

- name: Install
run: pnpm i
Expand All @@ -30,13 +29,12 @@ jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18

- run: corepack enable
cache: pnpm

- name: Install
run: pnpm i
Expand All @@ -54,13 +52,12 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- run: corepack enable
cache: pnpm

- name: Install
run: pnpm i
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,15 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v3
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/

- run: corepack enable
cache: pnpm

- run: npx changelogithub
env:
Expand Down

0 comments on commit 1759f19

Please sign in to comment.