Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: macdonst <[email protected]>
  • Loading branch information
macdonst committed Jul 4, 2024
1 parent 5b7fbe0 commit 3f98576
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Node CI

# Push tests commits; pull_request tests PR merges
on: [ push, pull_request ]

defaults:
run:
shell: bash

jobs:

test:
# Setup
runs-on: ubuntu-latest
# Go
steps:
- name: Check out repo
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org/

- name: Install
run: npm i

# ----- Only git tag testing + package publishing beyond this point ----- #

# Publish to package registries
publish:
# Setup
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest

# Go
steps:
- name: Check out repo
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org/

- name: Install
run: npm i

# Publish to npm
- name: Publish @RC to npm
if: contains(github.ref, 'RC')
run: npm publish --tag RC --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish @latest to npm
if: contains(github.ref, 'RC') == false #'!contains()'' doesn't work lol
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 3f98576

Please sign in to comment.