cookies: improve validateCookieName #12726
Workflow file for this run
This file contains 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: Node CI | |
on: | |
push: | |
branches: | |
- main | |
- current | |
- next | |
- 'v*' | |
pull_request: | |
jobs: | |
test: | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
max-parallel: 0 | |
matrix: | |
node-version: | |
- 18 | |
- 20 | |
- 21 | |
runs-on: | |
- ubuntu-latest | |
- windows-latest | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node.js@${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Print version information | |
run: | | |
echo OS: $(node -p "os.version()") | |
echo Node.js: $(node --version) | |
echo npm: $(npm --version) | |
echo git: $(git --version) | |
- name: Install dependencies | |
run: npm install | |
- name: Print installed dependencies | |
run: npm ls --all | |
continue-on-error: true | |
- name: Run tests | |
run: npm run coverage:ci | |
env: | |
CI: true | |
NODE_V8_COVERAGE: ./coverage/tmp | |
- name: Coverage Report | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
automerge: | |
if: > | |
github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]' | |
needs: test | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/github-action-merge-dependabot@9e7bfb249c69139d7bdcd8d984f9665edd49020b # v3.10.1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |