feat(office): add office search #31
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
name: NPM Publish Package | |
on: | |
push: | |
branches: [ master, beta, alpha ] | |
permissions: | |
contents: read | |
jobs: | |
quality: | |
name: Quality Control | |
uses: cnpja/workflows/.github/workflows/nodejs_quality_control.yaml@master | |
secrets: inherit | |
publish: | |
name: NPM Publish | |
runs-on: ubuntu-latest | |
needs: quality | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
id-token: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Install Dependencies | |
run: | | |
npm i -g pnpm | |
pnpm i --frozen-lockfile | |
- name: Build Distributable | |
run: pnpm build | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: pnpm release |