Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

update

update #46

Workflow file for this run

name: Check
on:
push:
branches:
- 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: Doc
run: yarn doc
- 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 }}