Skip to content

chore(deps): update dependency @types/node to v22 #426

chore(deps): update dependency @types/node to v22

chore(deps): update dependency @types/node to v22 #426

name: integration-test
on:
push:
branches:
- 'main'
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
integration-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config-pattern:
[
'default',
'saveUninitialized',
'rolling',
'saveUninitialized_and_rolling',
'both_maxAge_and_expires',
'expires'
]
name: config-pattern_${{ matrix.config-pattern }}_test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile
- name: Set up integration test
run: |
yarn playwright install
yarn playwright install-deps
- name: Integration test
run: yarn test:integration
env:
CONFIG_PATTERN: ${{ matrix.config-pattern }}