This repository was archived by the owner on Nov 18, 2024. It is now read-only.
Revert D63735778 #2377
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: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 15 * * *' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [ '12.16', '16.0' ] | |
| test: [ | |
| 'babel-plugin-fbt-runtime:test', | |
| 'babel-plugin-fbt:test', | |
| 'babel-plugin-standalone:test', | |
| 'demo-app:test', | |
| 'fb-tiger-hash:test', | |
| 'flow:check', | |
| 'gulp-rewrite-flowtyped-modules:test', | |
| 'gulp-strip-docblock-pragmas:test', | |
| 'top-level:test', | |
| ] | |
| name: "v${{ matrix.node }}: ${{ matrix.test }}" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v2-beta | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: yarn install | |
| - run: yarn run ${{matrix.test}} |