[EMU Migration] Remove secrets export workflow after completion #776
This file contains hidden or 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 | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| Lint: | |
| name: Lint | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set Node.js 10.13.0 | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: 10.13.0 | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Run lint check | |
| run: yarn lint | |
| Test: | |
| name: Test | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set Node.js 10.13.0 | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: 10.13.0 | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Run test suite | |
| run: yarn test |