chore(deps): update dependency @types/node to v22 #426
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: 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 }} |