Github actions: Added missing step for ziggy; Added names to steps

This commit is contained in:
Constantin Graf
2024-03-27 22:58:04 +01:00
parent 0b18c22fe0
commit 6dc7c1ba1d
4 changed files with 41 additions and 14 deletions

View File

@@ -11,9 +11,13 @@ jobs:
- name: "Checkout code"
uses: actions/checkout@v4
- name: Use Node.js
- name: "Use Node.js"
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run lint
- name: "Install npm dependencies"
run: npm ci
- name: "Run linter"
run: npm run lint