refactor(web): convert terms and privacy policy styling from SCSS to CSS-in-JS #130
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: Code Check | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- '.github/workflows/ci-vspo-schedule-web.yaml' | |
- 'service/vspo-schedule/web/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: service/vspo-schedule/web | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8.6.12 | |
- name: Download deps | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: Build | |
run: pnpm build |