Skip to content

feat(web): add Pools Table Row and Tokens Table Row elements (#70) #56

feat(web): add Pools Table Row and Tokens Table Row elements (#70)

feat(web): add Pools Table Row and Tokens Table Row elements (#70) #56

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
if: success()
- name: Release
env:
NPM_CONFIG_USERCONFIG: /dev/null
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn release
if: success()