chore: replace pnpm with npm #148
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "CI" | |
| on: | |
| #push: | |
| # branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install mise | |
| uses: jdx/mise-action@v2 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check code format | |
| run: npm run format:check | |
| - name: Build packages | |
| run: npm run build -w @xennis/react-notion-cms-fetch -w @xennis/react-notion-cms-render | |
| #- name: Build examples | |
| # run: npm run build -w nextjs |