Skip to content

Commit

Permalink
workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak committed Oct 26, 2023
1 parent 5926f5c commit e234d92
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/qwik_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,24 @@ jobs:
with:
node-version: 18
- run: npm ci

fmt:
runs-on: self-hosted
needs: ["install"]

steps:
- run: npm run fmt.check

lint:
runs-on: self-hosted
needs: ["install"]

steps:
- run: npm run lint

build:
runs-on: self-hosted
needs: ["install"]
needs: ["install", "fmt", "lint"]

steps:
- run: npm run build

0 comments on commit e234d92

Please sign in to comment.