[INTERNAL] Add generic message for v2 deprecation #2774
Workflow file for this run
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: GitHub CI | |
| on: | |
| push: | |
| branches: | |
| - v2 | |
| pull_request: | |
| branches: | |
| - v2 | |
| jobs: | |
| test: | |
| name: General checks and tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js LTS 14.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 14.x | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Perform checks and tests | |
| run: npm test |