Skip to content

Release marked-react v3.0.0 #19

Release marked-react v3.0.0

Release marked-react v3.0.0 #19

Workflow file for this run

name: NPM Publish
env:
NODE_VERSION: 20
on:
push:
tags: v*
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
env:
NODE_ENV: production
- name: Tests
run: npm run test
- name: Publish to NPM
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}