Skip to content

Commit

Permalink
Merge pull request #287 from azujuuuuuun/feature/migrate-to-pnpm
Browse files Browse the repository at this point in the history
Migrate npm to pnpm
  • Loading branch information
azujuuuuuun committed Jan 26, 2024
2 parents 5b33c9d + 58606ab commit c697778
Show file tree
Hide file tree
Showing 5 changed files with 6,962 additions and 20,352 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/continuous-delivery-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8

- run: npm ci
- run: npm run lint
- run: npm run test
- run: pnpm install
- run: pnpm run lint
- run: pnpm run test

- run: npm run build
- run: pnpm run build
env:
STORAGE_API_ENDPOINT: https://storage.googleapis.com
STORAGE_ACCESS_KEY_ID: ${{ secrets.STORAGE_ACCESS_KEY_ID }}
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: install
run: |
npm ci
pnpm install
- name: lint
run: |
npm run lint
pnpm run lint
- name: test
run: |
npm run test
pnpm run test
- name: build
run: |
npm run build
pnpm run build
env:
STORAGE_API_ENDPOINT: https://storage.googleapis.com
STORAGE_ACCESS_KEY_ID: ${{ secrets.STORAGE_ACCESS_KEY_ID }}
Expand Down
Loading

0 comments on commit c697778

Please sign in to comment.