Skip to content

Commit

Permalink
deps: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
baptiste0928 committed Mar 8, 2024
1 parent f71cc64 commit 64e8b27
Show file tree
Hide file tree
Showing 5 changed files with 2,686 additions and 2,555 deletions.
31 changes: 5 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Enable corepack
run: corepack enable

- name: Setup Node.js 20
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
Expand All @@ -32,28 +32,7 @@ jobs:
- name: Lint with ts-standard
run: pnpm run lint

package:
name: Package
runs-on: ubuntu-latest
needs: [lint]

steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Enable corepack
run: corepack enable

- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Package action
- name: Build action
run: pnpm run package

- name: Compare output
Expand All @@ -67,15 +46,15 @@ jobs:
test-action:
name: Test on ${{ matrix.runner }}
runs-on: ${{ matrix.runner }}
needs: [package]
needs: [lint]

strategy:
matrix:
runner: [ubuntu-latest, macos-latest, windows-latest]

steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install cargo-hack (from crates.io)
uses: ./
Expand Down
Loading

0 comments on commit 64e8b27

Please sign in to comment.