Skip to content

fix: typing

fix: typing #369

Workflow file for this run

name: Release
on:
push:
branches:
- next
- master
- beta
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
cache: "yarn"
- name: Install dependencies
run: yarn --immutable
- run: yarn test
- run: yarn build:prod
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: npx semantic-release