fix(deps): update all non-major dependencies for npm to v1.89.0 #39
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: Front CI | |
on: | |
push: | |
paths: [ 'front/**' ] | |
pull_request: | |
paths: [ 'front/**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./front | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
sparse-checkout: | | |
front | |
- name: Install pnpm | |
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
with: | |
package_json_file: front/package.json | |
- name: "Set up Node.js" | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
cache: 'pnpm' | |
node-version-file: front/.node-version | |
cache-dependency-path: front/pnpm-lock.yaml | |
- name: "Install dependencies" | |
run: pnpm install | |
- name: "Run check" | |
run: pnpm check | |
- name: "Build" | |
run: pnpm build |