Skip to content

update github actions #1

update github actions

update github actions #1

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Node.js Package
on:
push:
branches:
- main
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Install pnpm Manager
uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Build Package
run: pnpm -F actify build
- name: Publish Package
run: |
cd packages/actify
npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}