Update dependency immer to v10.1.1 #10902
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: PR check | |
on: | |
pull_request: | |
branches: | |
- main | |
- 6.X-stable | |
- story-* | |
jobs: | |
pr-check: | |
runs-on: ubuntu-latest | |
container: node:18.18.0-alpine | |
env: | |
PRIVATE_GH_TOKEN: ${{ secrets.PACKAGE_TOKEN }} | |
PRIVATE_NPM_TOKEN: ${{ secrets.PUBLISH_TOKEN }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- name: Checkout repository code | |
uses: actions/checkout@v4 | |
- name: Use CI npmrc | |
run: cp .npmrc.ci .npmrc | |
- name: Install dependencies | |
run: npm ci | |
- name: Check code formatting | |
run: npm run formatter:check | |
- name: Run PR check | |
run: npm run pr |