Skip to content

2024-06-13のJS: Storybook 8.1、Turborepo 2.0、Node v22.3.0(Snapshot Testing) #902

2024-06-13のJS: Storybook 8.1、Turborepo 2.0、Node v22.3.0(Snapshot Testing)

2024-06-13のJS: Storybook 8.1、Turborepo 2.0、Node v22.3.0(Snapshot Testing) #902

Workflow file for this run

name: update-draft-pr
on:
pull_request:
types: [opened, edited, synchronize]
permissions:
contents: write
pull-requests: write
jobs:
update-draft-pr:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && (github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER' || github.event.pull_request.author_association == 'COLLABORATOR')
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install
run: yarn install
working-directory: actions/update-draft-pr
- name: Run
run: yarn start
working-directory: actions/update-draft-pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_REQUEST_EVENT: ${{ toJson(github.event) }}