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 f4bf56e commit 1451a9b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/qwik_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Qwik build

on:
push:
branches: ["main"]
branches: ["master"]
pull_request:
branches: ["main"]
branches: ["master"]

jobs:
build:
install:
runs-on: self-hosted

steps:
Expand All @@ -18,4 +18,10 @@ jobs:
- run: npm ci
- run: npm run fmt.check
- run: npm run lint

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

steps:
- run: npm run build

0 comments on commit 1451a9b

Please sign in to comment.