ci(github-actions): Bump fsfe/reuse-action from 5 to 6 #63
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: General checks | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Use Node.js 22 | |
uses: actions/setup-node@v5 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm ci | |
- name: Perform Prettier check | |
run: npm run prettier:check | |
- name: Perform Licenses check | |
run: npm run check-licenses | |
- name: Perform dependency check | |
run: npm run depcheck |