Skip to content

chore(deps): bump winston from 3.7.2 to 3.10.0 #2890

chore(deps): bump winston from 3.7.2 to 3.10.0

chore(deps): bump winston from 3.7.2 to 3.10.0 #2890

Workflow file for this run

name: "Test"
on:
push:
branches:
- master
pull_request:
paths-ignore:
- 'data/**'
- 'ui/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/gallium, lts/hydrogen ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install ts auto mock and run test
run: |
sudo apt-get update
sudo apt-get install -y libgbm-dev
npm ci
npm run ts-patch:install
npm run build
npm test
check-type:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: check eslint and prettier
run: |
sudo apt-get update
sudo apt-get install -y libgbm-dev
npm ci
npm run eslint
npm run prettier