refactor(ui): replace ref-based state mutation with props-driven #22
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: build | |
| on: [push, pull_request] | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: npm | |
| node-version-file: .nvmrc | |
| - name: Install dependencies | |
| run: npm ci --prefer-offline | |
| - name: Lint commit message | |
| run: npx commitlint --from=HEAD~1 | |
| - name: Run ESLint | |
| run: npm run lint | |
| - name: Type check | |
| run: npm run lint:tsc | |
| - name: Build | |
| run: npm run build -- --base /${{ github.event.repository.name }}/ | |
| env: | |
| VITE_GOOGLE_ANALYTICS_ID: ${{ secrets.GOOGLE_ANALYTICS_ID }} | |
| - name: Deploy | |
| if: github.ref_name == 'master' | |
| uses: remarkablemark/gitploy-action@v1 | |
| with: | |
| directory: dist |