chore(deps-dev): bump @tailwindcss/cli from 4.1.8 to 4.1.16 in /services/frontend #204
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: Frontend CI | |
| on: | |
| push: | |
| paths: | |
| - 'services/frontend/**' | |
| - '.github/workflows/ci-frontend.yml' | |
| branches: [ master ] | |
| pull_request: | |
| paths: | |
| - 'services/frontend/**' | |
| - '.github/workflows/ci-frontend.yml' | |
| branches: [ master ] | |
| jobs: | |
| frontend-tests: | |
| name: Run Vue + Vitest Frontend Tests + Linter | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: services/frontend | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| - name: Cache node modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-npm-${{ hashFiles('services/frontend/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-npm- | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run Vitest | |
| run: npx vitest run | |
| - name: Run Linter | |
| run: npm run lint |