Update scripts #3583
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: Node.js CI | |
on: ["push"] | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.17.0] | |
steps: | |
- run: git config --global url."https://".insteadOf git:// | |
- run: git config --global url."https://github.com/".insteadOf git@github.com | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache Node.js modules | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.OS }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.OS }}-yarn- | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Compile Solidity contracts | |
run: yarn compile | |
env: | |
TEST_URI: ${{ secrets.TEST_URI }} | |
KOVAN_URI: ${{ secrets.TEST_URI }} | |
GOERLI_URI: ${{ secrets.TEST_URI }} | |
KOVAN_MNEMONIC: ${{ secrets.KOVAN_MNEMONIC }} | |
GOERLI_MNEMONIC: ${{ secrets.GOERLI_MNEMONIC }} | |
MAINNET_URI: ${{ secrets.MAINNET_URI }} | |
MAINNET_MNEMONIC: ${{ secrets.MAINNET_MNEMONIC }} | |
AVAX_URI: "https://api.avax.network/ext/bc/C/rpc" | |
AVAX_MNEMONIC: ${{ secrets.AVAX_MNEMONIC }} | |
FUJI_URI: "https://api.avax-test.network/ext/bc/C/rpc" | |
FUJI_MNEMONIC: ${{ secrets.FUJI_MNEMONIC }} | |
CI: true | |
- run: yarn test | |
env: | |
TEST_URI: ${{ secrets.TEST_URI }} | |
KOVAN_URI: ${{ secrets.TEST_URI }} | |
GOERLI_URI: ${{ secrets.TEST_URI }} | |
KOVAN_MNEMONIC: ${{ secrets.KOVAN_MNEMONIC }} | |
GOERLI_MNEMONIC: ${{ secrets.GOERLI_MNEMONIC }} | |
MAINNET_URI: ${{ secrets.MAINNET_URI }} | |
MAINNET_MNEMONIC: ${{ secrets.MAINNET_MNEMONIC }} | |
AVAX_URI: "https://api.avax.network/ext/bc/C/rpc" | |
AVAX_MNEMONIC: ${{ secrets.AVAX_MNEMONIC }} | |
FUJI_URI: "https://api.avax-test.network/ext/bc/C/rpc" | |
FUJI_MNEMONIC: ${{ secrets.FUJI_MNEMONIC }} | |
CI: true | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.17.0] | |
steps: | |
- run: git config --global url."https://".insteadOf git:// | |
- run: git config --global url."https://github.com/".insteadOf git@github.com | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache Node.js modules | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.OS }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.OS }}-yarn- | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint contracts | |
run: yarn lint:sol | |
- name: Lint typescript | |
run: yarn lint:ts |