Audit/fix #1
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: Functional Tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
functional-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: make set-github-action | |
- run: make run-github-ci device=nanos path=nanos | |
- run: make run-github-ci device=nanosp path=nanosplus | |
- run: make run-github-ci device=nanox path=nanox | |
- run: make run-github-ci device=stax path=stax | |
- run: make run-github-ci device=flex path=flex |