Skip to content

feat: remove unused package for compatible with node 18 (#81) #174

feat: remove unused package for compatible with node 18 (#81)

feat: remove unused package for compatible with node 18 (#81) #174

Workflow file for this run

name: CD
on:
push:
branches:
- master
- alpha
- alpha-bsc-fork
jobs:
build:
name: Build, test, and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.x
- uses: bahmutov/npm-install@v1
- name: Build
run: yarn build
- name: Deploy to NPM
run: yarn semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN_SEMANTIC_RELEASE }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}