Skip to content

Commit

Permalink
Push through workflow files.
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieGreenman committed Aug 15, 2023
1 parent 866ae6c commit 9e839dd
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
Empty file removed .github/workflows
Empty file.
17 changes: 17 additions & 0 deletions .github/workflows/pr-devops.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run Unit Tests

on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
DevOpsPRUnitTests:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build Private Dependencies And Test
run: |
npm install
npm run build
npm test -- -u
22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

name: Publish to NPM
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies and build 🔧
run: npm ci && npm run build
- name: Publish package on NPM 📦
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 9e839dd

Please sign in to comment.