Skip to content

feat: added ability to specify id for pc #6

feat: added ability to specify id for pc

feat: added ability to specify id for pc #6

Workflow file for this run

name: PR Code Checker
on:
pull_request:
branches: [ master ]
jobs:
lint_and_check_build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Run linter
run: yarn lint
- name: Run builder
run: yarn build