Skip to content

chore(deps-dev): Bump @types/node from 18.16.3 to 20.12.5 #10031

chore(deps-dev): Bump @types/node from 18.16.3 to 20.12.5

chore(deps-dev): Bump @types/node from 18.16.3 to 20.12.5 #10031

Workflow file for this run

name: Build and Test Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Npm Install
run: npm ci
- name: Lint Code
run: npm run lint
- name: Build Sources
timeout-minutes: 2
run: npm run build --if-present
- name: Execute Tests
run: npm run test
env:
CI: true
- name: Upload coverage
uses: coverallsapp/github-action@v1.2.4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./tmp/coverage/lcov.info