fix(deps): update dependency discord.js to v14 #2587
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: | |
| Continuous-integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 | |
| - name: Use Node.js | |
| uses: actions/setup-node@17f8bd926464a1afa4c6a11669539e9c1ba77048 # tag=v3 | |
| with: | |
| node-version: 16 | |
| - name: Restore CI Cache | |
| uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # tag=v3.0.11 | |
| id: cache-restore | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} | |
| - name: Install Dependencies if Cache Miss | |
| if: ${{ !steps.cache-restore.outputs.cache-hit }} | |
| run: yarn --immutable | |
| - name: Check Liniting | |
| run: yarn check:lint |