fix: badge outline style (#32) #26
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 to Netlify (main) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-to-netlify: | |
name: "Deploy to Netlify" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup node | |
uses: actions/[email protected] | |
with: | |
node-version: 18.12.1 | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- run: npm run lint | |
- run: npm run typecheck | |
- name: Build storybook | |
run: npm run build-storybook | |
- name: Deploy to Netlify | |
uses: nwtgck/actions-netlify@5da65c9f74c7961c5501a3ba329b8d0912f39c03 | |
with: | |
publish-dir: storybook-static | |
deploy-message: "Main deploy ${{ github.sha }}" | |
enable-commit-comment: false | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
production-deploy: true | |
github-deployment-environment: nightly | |
github-deployment-description: "Nightly deployment on each commit to main branch" | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_FOLDS_SB }} | |
timeout-minutes: 1 |