Skip to content

migrate: ReplicatedKey #6

migrate: ReplicatedKey

migrate: ReplicatedKey #6

Workflow file for this run

name: PR
on:
pull_request:
types: ['opened', 'synchronize']
env:
CI: true
jobs:
code-quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- name: Yarn
run: yarn
- name: Lint
run: yarn lint
- name: TypeCheck
run: yarn check
- name: Build
run: yarn build
- name: Unit Test
run: yarn test
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}