Skip to content

Commit

Permalink
chore: changed package manager
Browse files Browse the repository at this point in the history
- changed package manager: `npm` > `pnpm`
- migrated ci configuration
  • Loading branch information
imjuni committed Nov 19, 2023
1 parent 55d9ed8 commit 4fdf4b6
Showing 4 changed files with 6,929 additions and 20,958 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -20,14 +20,16 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm i
- run: pnpm run build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
Loading
Oops, something went wrong.

0 comments on commit 4fdf4b6

Please sign in to comment.