Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

sonar link

sonar link #284

Workflow file for this run

name: Check
on:
push:
branches:
- main
- hotfix
- dev
jobs:
build:
name: Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@master
with:
node-version: '18.x'
- name: Install
run: yarn install
- name: Depcheck
run: yarn depcheck
- name: Lint
run: yarn prettier
- name: Test
run: yarn test
- name: Build
run: yarn build
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

AltStyle によって変換されたページ (->オリジナル) /