deps(dev): update dependency pretty-quick to v3.3.1 #1640
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 | |
| # Events that trigger this workflow | |
| on: [push, pull_request] | |
| jobs: | |
| ci: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 📥 | |
| uses: actions/checkout@v3 | |
| - name: Setup Node 💿 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| cache: 'npm' | |
| - name: Install development dependencies 📚 | |
| run: npm ci | |
| - name: Build types 🛠️ | |
| run: npm run build | |
| - name: Test types | |
| run: npm run test | |
| - name: Upload types artifact 📤 | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: types-${{ github.run_number }} | |
| path: types | |
| retention-days: 7 |