fix(envdetector): envDetector components were missing children props … #59
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 | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '20' | |
check-latest: true | |
registry-url: 'https://registry.npmjs.org' | |
- uses: bahmutov/npm-install@v1 | |
- run: yarn ci | |
- run: git config user.email "insights-common-typescript@notfound" && git config user.name "CI job" | |
- run: yarn release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
HUSKY: 0 |