Update dependencies to fix security vulnerabilities #396
Workflow file for this run
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: Pull Request Verification | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: DeterminateSystems/nix-installer-action@c5a866b6ab867e88becbed4467b93592bce69f8a # v21 | |
| - run: nix run .#nix-develop .#workflow | |
| - run: pnpm install | |
| - run: ./node_modules/.bin/tsc --build | |
| - run: ./node_modules/.bin/tsc --build packages/core/tsconfig.json | |
| - run: ./node_modules/.bin/rollup -c rollup.config.js | |
| - run: rm -rf fixtures/output && ./packages/cli/bin fixtures/maegi.yml | |
| env: | |
| FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }} | |
| - run: git diff --exit-code | |
| biome: | |
| if: github.event.pull_request.draft == false | |
| name: Biome | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: DeterminateSystems/nix-installer-action@c5a866b6ab867e88becbed4467b93592bce69f8a # v21 | |
| - run: nix run .#nix-develop .#workflow | |
| - run: biome check --reporter=github . |