Fix the warnings of the static analyzer #18
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: continuous-integration | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch sources | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: 22 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: node --run test | |
env: | |
AKISMET_API_KEY: ${{secrets.AKISMET_API_KEY}} | |
NODE_ENV: test |