Bump form-data and firebase-tools #713
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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| WIREIT_FAILURES: continue | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - uses: google/wireit@setup-github-actions-caching/v1 | |
| - name: NPM install | |
| run: npm ci | |
| - name: Test | |
| run: npm test |