chore(ci): use github app token instead of bot user #552
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: CI | |
jobs: | |
test: | |
name: Test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node-version: [16.x, 18.x, 20.x] | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# the oidc-provider package we use doesn't list Node.js 20 as supported | |
- name: Install Dependencies | |
run: npm ci --ignore-engines | |
- name: Test | |
run: npm run test-ci | |
check: | |
name: Check | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [18.x] | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: npm ci --ignore-engines | |
- name: Compile | |
run: npm run compile | |
- name: Check | |
run: npm run check | |
package: | |
name: Package for publishing | |
runs-on: ubuntu-latest | |
if: ${{ startsWith(github.head_ref, 'release/') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install Dependencies | |
run: npm ci --ignore-engines | |
- name: Compile | |
run: npm run compile | |
- name: Pack | |
run: npm pack | |
- name: Archive artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package | |
path: mongodb-js-oidc-plugin-*.tgz |