Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@ on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
permissions:
contents: write # semantic-release pushes tags / GitHub release
id-token: write # required for npm trusted publishing (OIDC)
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.14.0'
Comment thread
qodo-for-filiphric[bot] marked this conversation as resolved.
- name: Checkout
uses: actions/checkout@v2
- name: Upgrade npm for trusted publishing
run: npm install -g npm@latest # needs >= 11.5.1
- name: Cypress run
uses: cypress-io/github-action@v5
with:
Expand All @@ -26,4 +31,4 @@ jobs:
semantic_version: ^25.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# NPM_TOKEN removed — OIDC trusted publishing handles auth
Loading