Skip to content

chore(deps): update all dependencies (#65) #251

chore(deps): update all dependencies (#65)

chore(deps): update all dependencies (#65) #251

Workflow file for this run

name: Check
on: push
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 }}