Skip to content

chore: add apap_request.json template definition #26

chore: add apap_request.json template definition

chore: add apap_request.json template definition #26

Workflow file for this run

name: Build

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

(Line: 53, Col: 9): Job 'publish' depends on unknown job 'notify'.
on:
push:
branches:
- main
pull_request:
branches:
- main
- v4.0.0 # Temporary, while we prepare for merge to main
jobs:
build:
name: Unit Tests
strategy:
matrix:
node-version:
- 18.x
- 20.x
os:
- windows-latest
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: git checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: npm test || echo "No tests configured"
- name: Archive npm failure logs
uses: actions/upload-artifact@v4
if: failure()
with:
name: npm-logs
path: C:\npm\cache\_logs\
publish:
needs:
- build
- notify
name: Publish to npm
if: ${{ success() && github.event_name == 'push' && github.repository_owner == 'accordproject' }}
runs-on: ubuntu-latest
outputs:
job-status: ${{ job.status }}
steps:
- name: git checkout
uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm ci
- run: npm run build --if-present
- name: timestamp
id: timestamp
run: |
node ./scripts/timestamp.js
- name: build and publish
run: |
npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
node ./scripts/bump_version.js ${{ steps.timestamp.outputs.stamp }}
npm version --workspaces --include-workspace-root --no-git-tag-version --yes --exact ${{ steps.timestamp.outputs.stamp }}
npm publish --workspaces --access public --tag=unstable 2>&1