Skip to content

Bump serve-static and express #898

Bump serve-static and express

Bump serve-static and express #898

Workflow file for this run

name: Pull request
on: pull_request
jobs:
build:
name: Pull request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Sonar analysis
uses: sonarsource/sonarcloud-github-action@master
with:
projectBaseDir: .
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
- name: Run linting
run: npm run lint
- name: Run tests
run: npm test
- name: Run backstop
run: npm run backstop:ci