chore(deps): update github/codeql-action digest to ff2f1c6 #516
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@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # 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 |