chore(deps): update dependency node-fetch to v3 #1298
Workflow file for this run
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 OIBus tests | |
on: | |
pull_request: | |
types: [ opened, synchronize, ready_for_review ] | |
paths-ignore: [ "documentation/**", "build/**", "data-folder/**", "**.md" ] | |
concurrency: | |
# New commit on branch cancels running workflows of the same branch | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ windows-latest, ubuntu-latest ] | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.19 | |
- name: Setup shared environment | |
uses: ./.github/actions/setup_shared_environment | |
with: | |
cache_version: ${{ secrets.GH_ACTIONS_CACHE_KEY }} | |
- name: Setup backend environment | |
uses: ./.github/actions/setup_backend_environment | |
with: | |
cache_version: ${{ secrets.GH_ACTIONS_CACHE_KEY }} | |
- name: Setup frontend environment | |
uses: ./.github/actions/setup_frontend_environment | |
with: | |
cache_version: ${{ secrets.GH_ACTIONS_CACHE_KEY }} | |
- name: Run unit tests | |
uses: ./.github/actions/unit_tests |