Skip to content

Merge pull request #85 from microcmsio/chore/update-v3.1.2 #25

Merge pull request #85 from microcmsio/chore/update-v3.1.2

Merge pull request #85 from microcmsio/chore/update-v3.1.2 #25

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: release on npm
run: |
npm ci
npm run lint
npm run test
npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}