fix(pattern): use configured RegExp engine with $data keyword to mitigate ReDoS attacks (CVE-2025-69873) #1660
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: build | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x, 18.x, 20.x, 21.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install | |
| - run: git submodule update --init | |
| - name: update website | |
| if: ${{ github.event_name == 'push' && matrix.node-version == '16.x' }} | |
| run: ./scripts/publish-site | |
| env: | |
| GH_TOKEN_PUBLIC: ${{ secrets.GH_TOKEN_PUBLIC }} | |
| GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }} | |
| GIT_USER_NAME: ${{ secrets.GIT_USER_NAME }} | |
| - run: npm run build | |
| - run: npm run test-ci | |
| - name: coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |