Skip to content

chore(deps-dev): bump follow-redirects from 1.15.5 to 1.15.6 #2

chore(deps-dev): bump follow-redirects from 1.15.5 to 1.15.6

chore(deps-dev): bump follow-redirects from 1.15.5 to 1.15.6 #2

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Select Node Version
uses: svierk/get-node-version@main
- name: Run npm clean-install
run: npm ci
- name: Check Prettier
run: npm run prettier
- name: Check ESLint
run: npm run lint
- name: Unit Tests
run: npm run test:ci
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Codecov Coverage Upload
uses: codecov/codecov-action@main
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: npm run build