Skip to content

Commit

Permalink
ci: remove node-setup in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nutgaard committed Jun 13, 2024
1 parent a97883f commit f88372e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
test-build-publish:
name: Test and build
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18, 20 ]
# strategy:
# matrix:
# node: [ 18, 20 ]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
name: Setup node ${{ matrix.node }}
with:
node-version: ${{ matrix.node }}
cache: 'npm'
# - uses: actions/setup-node@v3
# name: Setup node ${{ matrix.node }}
# with:
# node-version: ${{ matrix.node }}
# cache: 'npm'
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
test-and-build:
name: Test and build
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
# strategy:
# matrix:
# node: [18, 20]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
name: Setup node ${{ matrix.node }}
with:
node-version: ${{ matrix.node }}
cache: 'npm'
# - uses: actions/setup-node@v3
# name: Setup node ${{ matrix.node }}
# with:
# node-version: ${{ matrix.node }}
# cache: 'npm'
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
Expand Down

0 comments on commit f88372e

Please sign in to comment.