testnet: Add Katana token mapping #197
Workflow file for this run
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: Eslint | |
on: [push] | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Eslint Check (renegade.fi) | |
working-directory: ./renegade.fi | |
run: | | |
npm ci | |
npx eslint src/ --ext .tsx --config ./.eslintrc.js | |
- name: Eslint Check (docs.renegade.fi) | |
working-directory: ./docs.renegade.fi | |
run: | | |
npm ci | |
npx eslint src/ --ext .js --config ./.eslintrc.js | |
- uses: borales/[email protected] | |
with: | |
cmd: install | |
dir: "testnet.renegade.fi" | |
- name: Eslint Check (testnet.renegade.fi) | |
uses: borales/[email protected] | |
with: | |
cmd: lint | |
dir: "testnet.renegade.fi" | |
env: | |
NEXT_PUBLIC_RENEGADE_RELAYER_HOSTNAME: ${{ secrets.NEXT_PUBLIC_RENEGADE_RELAYER_HOSTNAME }} | |
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID }} | |
NEXT_PUBLIC_NODE_ENV: ${{ secrets.NEXT_PUBLIC_NODE_ENV }} | |
- name: Type check (testnet.renegade.fi) | |
uses: borales/[email protected] | |
with: | |
cmd: typecheck | |
dir: "testnet.renegade.fi" |