Update module github.com/caarlos0/env/v10 to v11 #5237
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: Frontend | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
defaults: | |
run: | |
working-directory: frontend | |
jobs: | |
frontend-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
cache-dependency-path: | | |
frontend/pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Prettier | |
run: pnpm run format:check | |
- name: ESLint | |
run: pnpm run lint | |
- name: Typecheck | |
run: pnpm run typecheck | |
- name: Build | |
run: pnpm run build | |
- name: Coverage | |
run: pnpm run coverage | |
- name: Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./frontend/coverage | |
flags: frontend | |
name: codecov-frontend | |
fail_ci_if_error: false | |
verbose: true |