Skip to content

Escape spaces in npm version script #26

Escape spaces in npm version script

Escape spaces in npm version script #26

name: grip-on-software/visualization-ui
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4.1.4
with:
fetch-depth: 0
- uses: actions/setup-node@v4.0.2
with:
cache: npm
- run: npm install
- run: npm test
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@v2.1.1
env:
SONAR_TOKEN: "${{ secrets.SONAR_TOKEN }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Coveralls
uses: coverallsapp/github-action@v2
if: "${{ success() }}"
strategy:
matrix:
node_js:
- '20'
- '22'