mirror of
https://github.com/Awesome-Technologies/synapse-admin.git
synced 2026-05-29 18:54:33 +00:00
29 lines
529 B
YAML
29 lines
529 B
YAML
name: build-test
|
|
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup node
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
- name: Install dependencies
|
|
run: yarn --immutable
|
|
- name: Run lint
|
|
run: yarn lint
|
|
- name: Run typecheck
|
|
run: yarn typecheck
|
|
- name: Run tests
|
|
run: yarn test
|