chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.5 #1425
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
# This Action should run on each PR by verifying if they pass on lint, test and build | |
name: CI | |
on: | |
push: | |
branches-ignore: | |
- main | |
- dev | |
jobs: | |
build: | |
name: Shoreline | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 25 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Stylelint | |
run: pnpm stylelint **/*.css | |
- name: Test | |
run: pnpm test:ci | |
- name: Publish to Chromatic | |
uses: chromaui/action@v1 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
buildScriptName: build:storybook:ci | |
exitOnceUploaded: true | |
onlyChanged: true | |
exitZeroOnChanges: true |