This commit is contained in:
2022-01-09 19:21:52 +01:00
parent 7eddb6a592
commit d7b5b6b73e
2 changed files with 7 additions and 5 deletions

View File

@@ -12,9 +12,11 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: "14"
- name: PNPM
run: npm i -g pnpm
- name: Install dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile
- name: Build
run: yarn run dist
run: pnpm run dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}