Merge pull request #178 from awell-health/select-position #207
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 package | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Enable yarn latest using corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn | |
- name: Run Specs | |
run: yarn test | |
- name: Build | |
run: yarn tailwind && yarn build | |
- name: Setup .yarnrc.yml | |
run: | | |
yarn config set npmAlwaysAuth true | |
yarn config set npmAuthToken $NPM_AUTH_TOKEN | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AWELL_DESIGN_SYSTEM_CI }} | |
- name: Publish to NPM Registry | |
run: yarn npm publish |