mirror of
https://github.com/sasjs/adapter.git
synced 2026-07-23 22:55:28 +00:00
81 lines
2.7 KiB
YAML
81 lines
2.7 KiB
YAML
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
|
|
|
|
name: SASjs Build and Publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
id-token: write # required for npm provenance (trusted publisher)
|
|
issues: write # optional: lets @semantic-release/github comment on issues
|
|
pull-requests: write # optional: lets @semantic-release/github comment on PRs
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [22]
|
|
|
|
steps:
|
|
# 1. Mint a short-lived GitHub App token (bypass-capable)
|
|
- name: Generate token
|
|
id: app-token
|
|
uses: actions/create-github-app-token@v1
|
|
with:
|
|
app-id: ${{ secrets.APP_ID }}
|
|
private-key: ${{ secrets.APP_PRIVATE_KEY }}
|
|
|
|
# 2. Checkout using the app token so the release commit can be pushed
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
persist-credentials: true
|
|
fetch-depth: 0 # semantic-release needs full history + tags
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
registry-url: https://registry.npmjs.org
|
|
|
|
# 3. Restore npm cache manually
|
|
- name: Restore npm cache
|
|
uses: actions/cache@v4
|
|
id: npm-cache
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
|
|
- name: Check code style
|
|
run: npm run lint
|
|
|
|
- name: Build Project
|
|
run: npm run build
|
|
|
|
- name: Clean up ready for publishing
|
|
run: npm run publishInit
|
|
|
|
- name: Semantic Release
|
|
run: npx semantic-release
|
|
env:
|
|
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} # <-- app token, not secrets.GITHUB_TOKEN
|
|
|
|
- name: Publish to npm with trusted publisher
|
|
if: success()
|
|
env:
|
|
NPM_CONFIG_PROVENANCE: true
|
|
run: npm publish --access public --provenance
|
|
|
|
- name: Send Matrix message
|
|
run: curl -XPOST -d "{\"msgtype\":\"m.text\", \"body\":\"New version of @sasjs/adapter has been released! \n Please deploy and run 'dctests' with new adapter to make sure everything is still in place.\"}" https://matrix.4gl.io/_matrix/client/r0/rooms/!jRebyiGmHZlpfDwYXN:4gl.io/send/m.room.message?access_token=${{ secrets.MATRIX_TOKEN }}
|