Release 0.5.2 - Maintenance #2
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
name: Automated Tests | |
on: | |
push: | |
branches: [master, develop] | |
pull_request: | |
branches: [master, develop] | |
permissions: | |
contents: read | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- run: "echo '🚀 Starting code quality checks for ${{ github.repository }} (ref: ${{ github.ref }})'" | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Check spelling | |
run: npm run test:spelling | |
- name: Check linting | |
run: npm run lint | |
- run: "echo '✨ Code quality checks completed with status: ${{ job.status }}.'" |