Skip to content

chore: update ipdx config #17

chore: update ipdx config

chore: update ipdx config #17

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- main
- canary
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install Dependencies + Build Distributons
run: yarn install --immutable
- name: Test Packages
run: yarn test
- name: Lint
run: yarn lint
- name: Release Packages
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}