Skip to content

Commit

Permalink
update pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
Mause committed Jan 10, 2024
1 parent e9225d1 commit 4876f97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ jobs:

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

steps:
- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ jobs:

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

steps:
- run: corepack enable
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --immutable
- run: yarn
working-directory: app
- run: yarn build
working-directory: app
Expand Down

0 comments on commit 4876f97

Please sign in to comment.