2021-03-15 03:42:36 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-03-18 23:31:26 +00:00
|
|
|
- name: Get nim-waku HEAD
|
|
|
|
id: nim-waku-head
|
|
|
|
shell: bash
|
|
|
|
run: echo "::set-output name=ref::$(git rev-parse HEAD)"
|
|
|
|
|
2021-03-15 06:50:38 +00:00
|
|
|
- name: Cache nim-waku binary
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2021-03-15 07:20:30 +00:00
|
|
|
path: |
|
|
|
|
./nim-waku/build/wakunode2
|
|
|
|
./nim-waku/vendor/rln/target/debug
|
2021-03-18 23:31:26 +00:00
|
|
|
key: nim-waku-build-v2-${{ steps.nim-waku-head.outputs.ref }}
|
2021-03-15 06:50:38 +00:00
|
|
|
|
2021-03-15 03:56:06 +00:00
|
|
|
- name: Install bufbuild
|
2021-03-15 04:23:54 +00:00
|
|
|
uses: mu-io/setup-buf@v1beta
|
|
|
|
with:
|
|
|
|
buf-version: '0.39.1'
|
2021-03-15 03:56:06 +00:00
|
|
|
|
2021-03-15 04:35:42 +00:00
|
|
|
- name: Install Protoc
|
|
|
|
uses: arduino/setup-protoc@v1
|
|
|
|
with:
|
|
|
|
version: '3.x'
|
|
|
|
|
2021-03-15 03:42:36 +00:00
|
|
|
- name: Install NodeJS
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
|
2021-03-15 03:50:52 +00:00
|
|
|
- name: install using npm ci
|
|
|
|
uses: bahmutov/npm-install@v1
|
2021-03-15 03:42:36 +00:00
|
|
|
|
|
|
|
- name: build
|
2021-03-15 04:39:55 +00:00
|
|
|
run: npm run build
|
2021-03-15 03:42:36 +00:00
|
|
|
|
|
|
|
- name: test
|
2021-03-15 04:39:55 +00:00
|
|
|
run: npm run test
|