Skip to content

Commit

Permalink
Added more infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
bcostdolby committed Aug 29, 2024
1 parent d9d71d5 commit 74a0773
Show file tree
Hide file tree
Showing 5 changed files with 3,927 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/logger-node-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: logger-node-test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: 'recursive'
- name: Initialize submodules
run: git submodule update --init --recursive
- name: Install and build
run: npm i
- name: Run Test
run: npm test
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
publish-npmjs:
permissions:
packages: write
contents: read
uses: millicast/github-actions/.github/workflows/npm-publish.yml@main
with:
registry-url: 'https://registry.npmjs.org/'
secrets:
token: ${{ secrets.NPMJS_PUBLISH_TOKEN }}
Loading

0 comments on commit 74a0773

Please sign in to comment.