chore(deps): update github/codeql-action digest to c6f9311 #463
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: ncc | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6 | |
| with: | |
| cache: 'yarn' | |
| node-version: '24' | |
| - run: yarn install | |
| - run: yarn lint | |
| - run: yarn test | |
| - run: yarn package | |
| - name: Self test create dist file | |
| id: selftest | |
| uses: ./ | |
| with: | |
| src: 'index.cjs' | |
| #ncc_args: '-o testdist' | |
| - uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9 | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| with: | |
| message: Commit Dist file | |
| committer_name: GitHub Actions | |
| committer_email: actions@github.com | |
| add: 'dist' | |
| commit: --signoff | |
| push: true |