Skip to content

chore(deps): update dependency husky to v9.1.7 #43

chore(deps): update dependency husky to v9.1.7

chore(deps): update dependency husky to v9.1.7 #43

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
client-test-unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test:unit -w client
client-test-e2e:
runs-on: ubuntu-latest
env:
LANDBOT_CONFIG_URL: ${{ secrets.LANDBOT_CONFIG_URL }}
BORIS_CMS_URL: ${{ secrets.BORIS_CMS_URL }}
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run test:e2e -w client