Merge pull request #421 from helium/mj/verified-data-transfer #1440
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: Node.js CI | |
on: | |
push: | |
branches: [master] | |
tags: ['v*'] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Use Node.js 13 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 13 | |
cache: 'npm' | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test |