Bump @typescript-eslint/parser from 8.5.0 to 8.6.0 #122
Workflow file for this run
This file contains 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
# This Continuous Integration (CI) pipeline lints, builds, and tests the code when a Pull Request is | |
# created or a commit is pushed to a Prod branch | |
name: CI | |
on: | |
push: | |
branches: ["main", "1.x.x"] | |
pull_request: | |
branches: ["main", "1.x.x"] | |
jobs: | |
continuous-integration: | |
name: Continuous Integration | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Get Node Version | |
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install Dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Unit Tests | |
run: npm test |