chore(deps): bump cookie, engine.io and express #84
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: Run tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
concurrency: | |
group: run-tests-group-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci_tests: | |
uses: dsi-hug/actions/.github/workflows/action.yml@v2 | |
with: | |
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]' | |
node-versions: '[20]' # Don't know why but windows-latest+node18 gives random timeouts with github action | |
working-directory: projects/lib | |
lint: true | |
test: true | |
build: true |