mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
f9545f513b
Co-authored-by: Marco Pasqualetti <marco.pasqualetti@live.com>
36 lines
735 B
YAML
36 lines
735 B
YAML
name: Repo root CI
|
|
|
|
# All workflows are triggered based on specific paths,
|
|
# the root repository is something that is not applicable to rust nor typescript
|
|
# so it has been moved in a standalone workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- '*'
|
|
- '.github/**'
|
|
- '.docker/**'
|
|
pull_request:
|
|
paths:
|
|
- '*'
|
|
- '.github/**'
|
|
- '.docker/**'
|
|
|
|
jobs:
|
|
build-and-test:
|
|
name: Check format
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install NodeJS Dependencies
|
|
uses: ./.github/actions/install-node-dependencies
|
|
|
|
- name: Test project
|
|
run: pnpm repo:root:format:check
|