This repository was archived by the owner on May 18, 2026. It is now read-only.
Update dependency postcss to v8.5.10 [SECURITY] #9177
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: Continuous Integration | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js LTS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - run: yarn | |
| - run: yarn lint | |
| - run: yarn test:coverage | |
| - run: yarn build |