Update dependency autoprefixer to v10.4.23 #443
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, pull_request] | |
| jobs: | |
| CI: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v3 | |
| with: | |
| persist-credentials: false | |
| - name: Install dependencies 💿 | |
| run: npm ci | |
| - name: Run linter ⚡ | |
| run: npm run lint | |
| - name: Run build 🔨 | |
| run: npm run build |