mirror of
https://github.com/nathonius/obsidian-trello.git
synced 2026-07-22 05:50:24 +00:00
18 lines
347 B
YAML
18 lines
347 B
YAML
name: Code Check
|
|
on:
|
|
- workflow_dispatch
|
|
- workflow_call
|
|
- pull_request
|
|
jobs:
|
|
build:
|
|
uses: './.github/workflows/build.yml'
|
|
lint:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
- name: Lint
|
|
run: |
|
|
npm install
|
|
npm run lint
|