Browse Source

fix: tyr to fix nodejs build

pull/386/head
winkidney 1 month ago
parent
commit
0617f461c5
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      .github/workflows/node.js.yml

+ 4
- 4
.github/workflows/node.js.yml View File

@@ -15,7 +15,7 @@ jobs:


strategy: strategy:
matrix: matrix:
node-version: [ 12.x, 14.x ]
node-version: [ 18.x, ]


steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -23,8 +23,8 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm install yarn
- run: yarn install --registry https://registry.yarnpkg.com
- run: npm install -g pnpm
- run: pnpm install
working-directory: ./pinry-spa working-directory: ./pinry-spa
- run: yarn build
- run: pnpm build
working-directory: ./pinry-spa working-directory: ./pinry-spa

Loading…
Cancel
Save