add Orderly testnet (#3328) #468
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: Build | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.3.1 | |
with: | |
submodules: recursive | |
- name: Build | |
run: | | |
./gradlew run | |
- name: Set Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Run yarn install | |
uses: borales/actions-yarn@v4 | |
with: | |
dir: 'website' | |
cmd: install # will run `yarn install` command | |
- name: Run yarn build | |
uses: borales/actions-yarn@v4 | |
with: | |
dir: 'website' | |
cmd: run build # will run `yarn test` command | |
- name: Merge | |
run: | | |
cp -a output/. website/public/ | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@4.1.4 | |
with: | |
branch: gh-pages | |
folder: website/public |