Update dependency ts-jest to v25.5.1 #13939
This file contains hidden or 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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| node-version: [18.x] | |
| os: [ubuntu-latest, windows-2025, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm config set package-lock false | |
| - name: install linux dependency | |
| if: startsWith(matrix.os,'ubuntu') | |
| run: sudo apt-get install libxtst-dev | |
| - run: npm install | |
| - run: npm test | |
| env: | |
| CI: true | |
| ELECTRON_QA: true |