deps: bump postcss from 8.5.6 to 8.5.8 (#36) #91
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install system dependencies | |
| run: sudo apt-get update && sudo apt-get install -y python3 make g++ | |
| - name: Install npm dependencies | |
| run: npm install | |
| - name: Rebuild native modules for CI Node version | |
| run: npm rebuild better-sqlite3-multiple-ciphers | |
| - run: npm audit --omit=dev || true | |
| - run: npm run lint || true | |
| - name: Run tests | |
| run: npm test | |
| - run: npm run build |