Publish @fusionauth/react-sdk #12
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: Publish @fusionauth/react-sdk | |
on: workflow_dispatch | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: React SDK - Install packages | |
run: yarn install --frozen-lockfile | |
- name: Build core package | |
run: yarn build:core | |
- name: React SDK - Test | |
run: yarn test:sdk-react | |
publish-sdk-react: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
- run: yarn install --frozen-lockfile | |
- name: React SDK - Build | |
run: yarn build:sdk-react | |
- name: React SDK - Publish | |
working-directory: ./packages/sdk-react/dist | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_REACT_SDK }} |