chore: GH pages deploy test 8 #21
Workflow file for this run
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: Run linters and Cypress | |
on: | |
push: | |
branches-ignore: | |
- "gh-pages" | |
pull_request: | |
types: [closed] | |
branches: | |
- main | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn | |
- name: Lint | |
uses: wearerequired/lint-action@v2 | |
with: | |
eslint: true | |
eslint_dir: src | |
eslint_extensions: js,ts,jsx,tsx | |
eslint_auto_fix: false | |
prettier: true | |
prettier_dir: src | |
prettier_extensions: js,ts,jsx,tsx | |
prettier_auto_fix: false | |
# Cypress disabled until tests rewritten to use new SB paths | |
# - name: Cypress | |
# uses: cypress-io/github-action@v6 | |
# with: | |
# start: yarn start | |
deploy-storybook: | |
name: Deploy to Storybook | |
runs-on: ubuntu-latest | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
shell: bash | |
run: | | |
echo "::group::Build" | |
yarn install | |
yarn build-storybook | |
echo "::endgroup::" | |
- name: Upload | |
uses: actions/[email protected] | |
with: | |
path: preview | |
- id: deploy | |
name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 |