Update dependency js-yaml to v4 [SECURITY] #8393
This file contains hidden or 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: Bundlemon | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| types: [synchronize, opened, reopened] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install Dependencies | |
| run: yarn install --immutable | |
| - name: Compile Assets | |
| run: yarn compile:production | |
| env: | |
| NODE_OPTIONS: --openssl-legacy-provider | |
| - name: Run BundleMon | |
| run: yarn bundlemon | |
| env: | |
| CI_COMMIT_SHA: ${{github.event.pull_request.head.sha || github.sha}} | |
| NODE_OPTIONS: --openssl-legacy-provider |