Skip to content

chore: Add LICENSE

chore: Add LICENSE #9

Workflow file for this run

name: Release npm package
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
name: Build and publish
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7.9.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: |
pnpm i --frozen-lockfile
env:
CI: true
- name: Semantic release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}