chore(deps): update all non-major dependencies (#101) #464
This file contains 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: | |
- '**' | |
paths-ignore: | |
- 'docs/**' | |
# We don't need to test tags | |
tags-ignore: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm -C nuxt run dev:prepare | |
- run: pnpm run build | |
- run: pnpm run lint | |
- run: pnpm run test | |
- run: pnpm run test:types | |
- run: pnpm run size | |
- run: pnpm run build:plugins | |
# avoid updating deps that do not build docs | |
# TODO: move to a different job with a different filter | |
- run: pnpm run docs:build | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |