Skip to content

Change status page for flyover #4375

Change status page for flyover

Change status page for flyover #4375

Workflow file for this run

name: 2wp-app build
on: [push, pull_request]
jobs:
checkout-and-build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Build project
run: |
npm ci
npm run build
npm run lint
npm run test:unit
- name: Code Coverage Report
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}