Automated rollback of commit 73fbe6d63a696d8e19322e68e6efb509cbf5bc63. #923
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
- name: Use Node.js 15.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 15.x | |
- run: yarn | |
- run: yarn run build | |
- run: yarn test |