Skip to content

Bump actions/checkout from 3.2.0 to 3.5.0 #2403

Bump actions/checkout from 3.2.0 to 3.5.0

Bump actions/checkout from 3.2.0 to 3.5.0 #2403

Workflow file for this run

name: CI
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v3.5.0
with:
fetch-depth: 0
persist-credentials: false
- uses: pnpm/action-setup@v2.2.4
with:
version: 7.x.x
- uses: actions/setup-node@v3.5.1
with:
node-version: '18'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm build-storybook
- run: pnpm percy storybook ./.out
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v3.5.0
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2.2.4
with:
version: 6.10.0
- uses: actions/setup-node@v3.5.1
with:
node-version: '14'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm fmt:check
- run: pnpm mrl check