Bump rack from 3.1.9 to 3.1.10 in /api in the bundler group #2537
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: Web | |
on: push | |
concurrency: | |
group: web-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: web | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
package_json_file: web/package.json | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: web/.node-version | |
cache: pnpm | |
cache-dependency-path: web/pnpm-lock.yaml | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: web | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
package_json_file: web/package.json | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: web/.node-version | |
cache: pnpm | |
cache-dependency-path: web/pnpm-lock.yaml | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm test |