build-rrb-list #1
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
name: build-rrb-list | |
run-name: build-rrb-list | |
on: [push] | |
jobs: | |
build-rrb-list: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup nodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dev dependencies | |
run: yarn install | |
- name: Build RRBList | |
run: yarn build | |
test-rrb-list: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup nodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dev dependencies | |
run: yarn install | |
- name: Test RRBList | |
run: yarn test |