-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from Concordium/add-build-pipeline
Add build pipeline
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Build and lint | ||
|
||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
# Allows us to run the workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: "recursive" | ||
|
||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: "14.16.0" | ||
|
||
- name: Get dependencies | ||
run: yarn | ||
|
||
- name: Build gRPC | ||
run: yarn generate | ||
|
||
- name: Build | ||
run: yarn build | ||
|
||
lint: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: "recursive" | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: "14.16.0" | ||
|
||
- name: Get dependencies | ||
run: yarn | ||
|
||
- name: Lint | ||
run: yarn lint |