Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ runs:
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node }}
cache: 'npm'
package-manager-cache: false

- name: Install dependencies
shell: bash
run: npm ci --include=dev
run: npm i --include=dev

- name: Build package
shell: bash
Expand Down
5 changes: 2 additions & 3 deletions .github/actions/npm-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,15 @@ runs:
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
package-manager-cache: false

- name: Update npm
shell: bash
run: npm install -g npm@11

- name: Install dependencies
shell: bash
run: npm ci --include=dev
run: npm i --include=dev

- name: Build package
if: inputs.require-build == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/browserstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
package-manager-cache: false

- name: Build package
uses: ./.github/actions/build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Install dependencies
run: npm ci
run: npm i

- name: Install Cypress binary
run: npx cypress install
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Install dependencies
run: npm i

- uses: snyk/actions/node@9adf32b1121593767fc3c057af55b55db032dc04 # pin@1.0.0
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
package-manager-cache: false

- name: Install dependencies
run: npm ci --include=dev
run: npm i --include=dev

- name: Run tests
run: npm run test
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,6 @@ dist
test-results

cypress/screenshots
cypress/videos
cypress/videos

package-lock.json
Loading
Loading