Skip to content

Bump marked from 13.0.0 to 13.0.1 #1299

Bump marked from 13.0.0 to 13.0.1

Bump marked from 13.0.0 to 13.0.1 #1299

Workflow file for this run

name: "[TEST] NewsFragments"
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Build & Test
run: npm test
- uses: SonarSource/sonarcloud-github-action@master
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}