Skip to content

build(deps-dev): bump husky from 9.1.5 to 9.1.6 (#166) #633

build(deps-dev): bump husky from 9.1.5 to 9.1.6 (#166)

build(deps-dev): bump husky from 9.1.5 to 9.1.6 (#166) #633

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
on:
push:
branches:
- main
- develop
pull_request:
types: [opened, synchronize, reopened]
name: CI
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Set Timezone to London
uses: szenius/set-timezone@v1.2
with:
timezoneLinux: "Europe/London"
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
env:
AUTH_ACCOUNTS: ${{ secrets.AUTH_ACCOUNTS }}
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}