chore(deps-dev): bump eslint from 9.39.2 to 10.0.2 #485
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: Automated Tests | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| jobs: | |
| run-lint: | |
| runs-on: ubuntu-slim | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Print context | |
| run: | | |
| echo "🎉 The job was automatically triggered by a ${GITHUB_EVENT_NAME} event." | |
| echo "🐧 This job is now running on a ${RUNNER_OS} server hosted by GitHub!" | |
| echo "🔎 The name of your branch is ${GITHUB_REF} and your repository is ${GITHUB_REPOSITORY}." | |
| env: | |
| GITHUB_EVENT_NAME: ${{ github.event_name }} | |
| RUNNER_OS: ${{ runner.os }} | |
| GITHUB_REF: ${{ github.ref }} | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Confirm checkout | |
| run: | | |
| echo "💡 The ${GITHUB_REPOSITORY} repository has been cloned to the runner." | |
| echo "🖥️ The workflow is now ready to test your code on the runner." | |
| env: | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check formatting | |
| run: node --run prettier | |
| - name: Check linting | |
| run: node --run lint | |
| - name: Run unit tests | |
| run: node --run test:unit | |
| - name: Print job status | |
| run: echo "🍏 This job's status is ${JOB_STATUS}." | |
| env: | |
| JOB_STATUS: ${{ job.status }} |