Skip to content

feat!: update node.js versions (#20) #48

feat!: update node.js versions (#20)

feat!: update node.js versions (#20) #48

Workflow file for this run

name: release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: yarn
- run: yarn install
- run: yarn build
- run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}