chore(deps-dev): bump astro from 6.4.8 to 7.1.0 #43
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: iso-conf | |
| env: | |
| CI: true | |
| FORCE_COLOR: 1 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'packages/iso-conf/**' | |
| - .github/workflows/iso-conf.yml | |
| - pnpm-lock.yaml | |
| pull_request: | |
| paths: | |
| - 'packages/iso-conf/**' | |
| - .github/workflows/iso-conf.yml | |
| - pnpm-lock.yaml | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| version: latest | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm -r --filter iso-conf run lint | |
| - run: pnpm -r --filter iso-conf run test | |
| - run: pnpm -r --filter iso-conf exec depcheck |