Skip to content

Commit

Permalink
chore(ci): fix pnpm run
Browse files Browse the repository at this point in the history
  • Loading branch information
bigopon committed Sep 1, 2021
1 parent 50f2668 commit e028469
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,25 @@ jobs:
run: npm run build:ci

PNPM:
runs-on: ubuntu-latest
runs-on: window-latest

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

steps:
- uses: pnpm/[email protected]
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
version: 6.0.2
node-version: ${{ matrix.node-version }}

- name: prepare pnpm
run: npm i -g pnpm

- name: Install dependencies
run: pnpm ci

- name: Test build basic app with PNPM
working-directory: ./tests/app-pnpm
run: npm run build:ci

0 comments on commit e028469

Please sign in to comment.