Skip to content

Refactored Logger definitions to be lazy #21

Refactored Logger definitions to be lazy

Refactored Logger definitions to be lazy #21

Workflow file for this run

name: Sanity checks
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopend
jobs:
linting:
name: Static analysis with ESLint
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Install translation tools
run: sudo apt-get install -y make gettext
- name: Install NodeJS 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install the dependencies
run: yarn install --frozen-lockfile
- name: Analyse source code with ESLint
run: yarn lint
building:
name: Packaging
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Install translation tools
run: sudo apt-get install -y make gettext
- name: Install NodeJS 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install the dependencies
run: yarn install --frozen-lockfile
- name: Build the extension zip from the TypeScript sources
run: yarn package
- name: Upload the distributable package
uses: actions/upload-artifact@v3
with:
name: extension-archive
path: build/dist/**/*
sonarcloud:
name: Static analysis with SonarCloud
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Perform SonarCloud Scan
uses: SonarSource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}