Skip to content

update

update #8

Workflow file for this run

name: Pull requests
on:
pull_request:
branches:
- main
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
permissions:
contents: write
pull-requests: write
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: install pnpm
run: npm i pnpm@latest -g
- name: cat package.json
run: cat package.json
- name: storybook info
run: npx storybook@next info
- name: storybook init
run: npx storybook@next init --skip-install
- name: cat package.json
run: cat package.json