Skip to content

⬆️ Bump @types/node from 20.14.8 to 20.14.9 #136

⬆️ Bump @types/node from 20.14.8 to 20.14.9

⬆️ Bump @types/node from 20.14.8 to 20.14.9 #136

Workflow file for this run

name: PR Flow
on: [pull_request]
permissions:
pull-requests: write
jobs:
flow:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x', '20.x']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Check Lint
run: npm run check:lint
- name: Check Typescript
run: npm run check:tsc
- name: Run Unit Tests
run: npm run test:unit
- uses: ArtiomTr/jest-coverage-report-action@v2
with:
package-manager: npm
continue-on-error: true