Skip to content

feat(ctl): added deamonReload #46

feat(ctl): added deamonReload

feat(ctl): added deamonReload #46

Workflow file for this run

name: Checks
on:
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup NodeJS 22"
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- name: Install
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Lint
run: yarn lint