Skip to content

ci: run tests on node 14, 16, 18, 20 and 22 #35

ci: run tests on node 14, 16, 18, 20 and 22

ci: run tests on node 14, 16, 18, 20 and 22 #35

Workflow file for this run

name: Release
on:
push:
branches:
- master
- "[0-9]+.[0-9]+.x"
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "20.x"
- run: yarn install --pure-lockfile
- run: yarn build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}