Skip to content

Commit

Permalink
update node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashass committed Nov 20, 2024
1 parent 2207a24 commit 85c5f2d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 29 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,25 +47,3 @@ jobs:
version: 9
run_install: true
- run: pnpm test

# e2e:
# name: Playwright Tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 20
# - uses: pnpm/action-setup@v3
# with:
# version: 8
# run_install: true
# - run: pnpm build:package
# - run: npx playwright install --with-deps
# - run: pnpm test || exit 1
# - uses: actions/upload-artifact@v3
# if: always()
# with:
# name: playwright-report
# path: playground/playwright-report/
# retention-days: 30
8 changes: 4 additions & 4 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
tasks:
- name: Setup gitpod env
before: |
nvm install 20
nvm use 20
npm install -g pnpm@8
nvm alias default 20
nvm install 22
nvm use 22
npm install -g pnpm@9
nvm alias default 22
echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix
init: pnpm install && pnpm run build
Expand Down
4 changes: 2 additions & 2 deletions packages/former/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/node22": "^22.0.0",
"@types/lodash": "^4.17.7",
"@types/node": "^20.12.5",
"@types/node": "^22.9.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/tsconfig": "^0.5.1",
"@vueuse/core": "^10.9.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/former/tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"composite": true,
"module": "ESNext",
Expand Down

0 comments on commit 85c5f2d

Please sign in to comment.