build(deps): bump diff from 4.0.2 to 4.0.4 #1676
Workflow file for this run
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: Node CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x, 21.x] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # Important! Enables git history for lerna | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Npm install | |
| run: npm install | |
| - name: Build all packages | |
| run: npm run build | |
| - name: Run tests for changed packages | |
| run: npx lerna run test --since origin/master --stream --concurrency 1 | |
| env: | |
| CI: true |