Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

docs: confluence document migration #114

docs: confluence document migration

docs: confluence document migration #114

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
name: install, build, test
permissions:
packages: read
contents: read
steps:
- uses: actions/checkout@v3
- name: Setup Node.js (.npmrc)
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: https://npm.pkg.github.com/
# Defaults to the user or organization that owns the workflow file
scope: '@frmscoe'
- name: Install dependencies
run: npm ci
env:
GH_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: Run unit tests
run: npm run test
env:
STARTUP_TYPE: 'nats'