Skip to content

Commit

Permalink
simplify github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
droganov committed Apr 30, 2024
1 parent 5288f21 commit 41e73c5
Showing 1 changed file with 1 addition and 29 deletions.
30 changes: 1 addition & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- uses: pnpm/action-setup@v2
name: Install pnpm
Expand All @@ -28,31 +28,3 @@ jobs:
env:
FORCE_COLOR: 2
NEXT_TELEMETRY_DISABLED: 1
short:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 17
- 16
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7.5.1
run_install: false
- name: Install dependencies
run: make i
- name: Build without checks
run: pnpm run build
env:
FORCE_COLOR: 2
NEXT_TELEMETRY_DISABLED: 1

0 comments on commit 41e73c5

Please sign in to comment.