fix(package.json): removed caret for webpack package #155
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: 'Dependency review' | |
on: | |
pull_request: | |
paths: | |
- packages/arui-scripts/** | |
permissions: | |
discussions: write | |
contents: read | |
pull-requests: write | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: yarn install | |
run: | | |
yarn install --immutable | |
- name: Run Audit | |
id: audit | |
run: | | |
yarn turbo audit |