Skip to content

chore: Set GNU Affero General Public License v3.0 license #47

chore: Set GNU Affero General Public License v3.0 license

chore: Set GNU Affero General Public License v3.0 license #47

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
ci:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '22.x'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Format
run: yarn format:check
- name: Lint
run: yarn lint:check