This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
chore(deps): update all non-major dependencies - autoclosed #128
Workflow file for this run
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-dev | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
pull-requests: read | |
strategy: | |
matrix: | |
os: [ubuntu-latest] # macos-latest, windows-latest | |
node: [20] | |
env: | |
NUXT_GITHUB_TOKEN: ${{ secrets.NUXT_GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: Filter changes | |
uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
src: | |
- 'src/**' | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Prepare | |
run: pnpm run dev:prepare | |
- name: Lint | |
run: pnpm run lint | |
- name: Typecheck | |
run: pnpm run typecheck | |
- name: Test | |
run: pnpm run test run | |
- name: Build | |
run: pnpm run build | |
- name: Release Edge | |
if: github.event_name == 'push' && steps.changes.outputs.src == 'true' | |
run: ./scripts/release-edge.sh | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}} |