Skip to content

Commit

Permalink
build: fix main-workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kotzbauer <[email protected]>
  • Loading branch information
ckotzbauer committed Oct 15, 2021
1 parent 644af85 commit 8c6fd44
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: build

on:
push:
branches:
- '**'
push: {}

jobs:
build:
Expand All @@ -16,8 +14,12 @@ jobs:
with:
node-version: "14"
- name: Prepare
run: npm ci
run: |
cd kyverno-test
npm ci
- name: Build
run: npm run package
- name: Test
run: npm test
run: |
cd kyverno-test
npm run package
#- name: Test
# run: npm test

0 comments on commit 8c6fd44

Please sign in to comment.