Skip to content

Commit

Permalink
Merge pull request #5 from morganstanley/release-action
Browse files Browse the repository at this point in the history
created a release action
  • Loading branch information
aidanm3341 authored Nov 23, 2023
2 parents df258ef + 29cb4f4 commit a8cf341
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release

on:
release:
types: [ published ]
workflow_dispatch:

jobs:
build:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install node modules and verify build
run: npm install && npm run build-release

- name: Lint and test
run: npm run lint && npm run test

- name: Publish
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}

0 comments on commit a8cf341

Please sign in to comment.