Skip to content

v1.0.14 - 2024.01.31 #8

v1.0.14 - 2024.01.31

v1.0.14 - 2024.01.31 #8

Workflow file for this run

name: Publish
on:
release:
types: [published, edited]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}
- name: Use node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16
- name: NPM Install
run: npm ci
- name: Check Format
run: npm run format:check
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test
- uses: JasonEtco/build-and-tag-action@v2
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ github.event.release.tag_name }}