update deps, migrate to pnpm

This commit is contained in:
Jorrin
2024-03-29 21:23:32 +01:00
parent f8a5120064
commit 21f1fd3cee
35 changed files with 15210 additions and 25328 deletions

View File

@@ -13,22 +13,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install packages
run: npm install
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Run tests
run: npm run test
- name: Install packages
run: pnpm install --frozen-lockfile
- name: Run integration tests
run: npm run build && npm run test:integration
- name: Run tests
run: pnpm run test
- name: Run linting
run: npm run lint
- name: Run integration tests
run: pnpm run build && pnpm run test:integration
- name: Run linting
run: pnpm run lint