Fix React build #4
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: Deploy schematic-react | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 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: ["test", "lint"] | ||
Check failure on line 33 in .github/workflows/deploy_react.yml GitHub Actions / Deploy schematic-reactInvalid workflow file
|
||
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 | ||
- 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 |