Add track event quantity support for schematic-react #53
Workflow file for this run
This file contains hidden or 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: Deploy schematic-react | |
| on: | |
| push: | |
| tags: | |
| - 'schematic-react@*' | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Yarn install | |
| working-directory: ./react | |
| run: yarn install | |
| - name: Lint | |
| working-directory: ./react | |
| run: yarn lint | |
| publish: | |
| name: NPM Publish | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| contents: read | |
| needs: [lint] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Yarn install | |
| working-directory: ./react | |
| run: yarn install | |
| - name: Build | |
| working-directory: ./react | |
| run: yarn build | |
| - name: Set up .npmrc | |
| run: touch .npmrc && echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| working-directory: ./react | |
| - name: Test .npmrc | |
| run: cat .npmrc | |
| working-directory: ./react | |
| - run: yarn publish --access public | |
| working-directory: ./react | |
| notify_slack: | |
| name: Notify Slack | |
| runs-on: ubuntu-latest | |
| needs: [publish] | |
| steps: | |
| - uses: rtCamp/action-slack-notify@v2 | |
| env: | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
| SLACK_TITLE: Updated schematic-react | |
| SLACK_ICON: https://schematic-public-assets.s3.amazonaws.com/logos/logo-transparent.png |