Flow #9
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: Flow | |
on: | |
pull_request: | |
branches: | |
- f24 | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
flow: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- run: cp install/package.json package.json | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install | |
- name: Install Flow | |
run: npm install --save-dev flow-bin | |
- name: Run Flow | |
run: npx flow |