Skip to content

BI-2539 - Add GitHub as Alternative OAuth Provider #2315

BI-2539 - Add GitHub as Alternative OAuth Provider

BI-2539 - Add GitHub as Alternative OAuth Provider #2315

Workflow file for this run

#
# See the NOTICE file distributed with this work for additional information
# regarding copyright ownership.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: npm audit and vue build
on:
pull_request:
type: [opened, edited]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: upgrade npm
run: npm install -g npm@8.12.1
- name: Install dependencies
run: npm ci --json
- name: Checking linting and build app
run: npm run build
- name: Run unit tests
run: npm run test:unit