build(deps-dev): bump the all group across 1 directory with 20 updates #136
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: | |
- master | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: read | |
concurrency: | |
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Run lint | |
if: github.repository == 'skyclouds2001/template-sky' | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4.1.0 | |
- name: Install Node.js | |
uses: actions/setup-node@v4.4.0 | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run lint | |
run: pnpm lint | |
tests: | |
name: Run test | |
if: github.repository == 'skyclouds2001/template-sky' | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4.1.0 | |
- name: Install Node.js | |
uses: actions/setup-node@v4.4.0 | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run tests | |
run: pnpm test | |
- name: Upload test report | |
uses: actions/upload-artifact@v4.6.2 | |
with: | |
name: test-report | |
path: | | |
vitest-report/ | |
coverage-report/ |