mirror of
https://github.com/nathonius/obsidian-github-link.git
synced 2026-07-22 09:20:25 +00:00
19 lines
380 B
YAML
19 lines
380 B
YAML
name: Code Check
|
|
on:
|
|
- workflow_dispatch
|
|
- workflow_call
|
|
- pull_request
|
|
jobs:
|
|
build:
|
|
uses: "./.github/workflows/build.yml"
|
|
check:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
- name: Lint and Test
|
|
run: |
|
|
npm install
|
|
npm run lint
|
|
npm run test
|