From 03407a901bda386d836f5b2ea1909b27e04a70a3 Mon Sep 17 00:00:00 2001 From: MulyukovAidar Date: Wed, 1 Nov 2023 12:09:14 +0400 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8c99b5..d836b7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,16 +2,16 @@ name: build on: push: - branches: [ master ] + branches: [ main, dev, certification ] pull_request: - branches: [ master ] + branches: [ main, dev, certification ] jobs: build: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -20,6 +20,8 @@ jobs: node-version: ${{ matrix.node-version }} - run: npm audit continue-on-error: true + - run: npm outdated + continue-on-error: true - run: npm ci - run: npm run eslint --if-present - run: npm run lint --if-present