Skip to content

chore(deps): bump @types/node from 20.14.9 to 22.6.1 #1123

chore(deps): bump @types/node from 20.14.9 to 22.6.1

chore(deps): bump @types/node from 20.14.9 to 22.6.1 #1123

Workflow file for this run

---
name: Lint and Test
on: # yamllint disable-line rule:truthy
- push
jobs:
lint-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: yamllint
uses: ibiqlik/action-yamllint@v3
with:
strict: true
- name: markdownlint
uses: nosborn/[email protected]
with:
files: .
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '21'
- name: Install
run: npm ci
- name: ESLint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}