Skip to content

Commit

Permalink
chore: make build part of make all
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptammergard committed Apr 16, 2021
1 parent ba4d467 commit 934eb4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,8 @@ jobs:
- name: Make
run: make

build:
needs: make
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node
uses: actions/[email protected]
with:
node-version: 12
- name: Build
run: make build

release:
needs: build
needs: make
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ all: \
install-deps \
commitlint \
prettier-markdown \
git-verify-nodiff
git-verify-nodiff \
build

include tools/commitlint/rules.mk
include tools/git-verify-nodiff/rules.mk
Expand Down

0 comments on commit 934eb4d

Please sign in to comment.