chore(deps): update dependency postcss to v8.5.18 [security] #129
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| # `npm install` (not `npm ci`) because the lockfile is generated on | |
| # Windows and omits Linux-only optional deps that npm-on-Linux expects. | |
| - run: npm install | |
| - name: Lint | |
| run: npm run lint | |
| - name: Type check | |
| run: npx tsc -b | |
| - name: Test | |
| run: npm test -- --run | |
| pipeline: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| cache: pip | |
| - name: Install pipeline deps | |
| run: pip install -r requirements.txt | |
| - name: Test pipeline | |
| # python -m pytest puts the repo root on sys.path so | |
| # `from scripts.update_market_data import ...` resolves. | |
| run: python -m pytest scripts/tests |