mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
23 lines
404 B
YAML
23 lines
404 B
YAML
name: lint test CI
|
|
|
|
on: [push,pull_request_target]
|
|
|
|
jobs:
|
|
build-test:
|
|
name: Lint Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node 20
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: npm-install
|
|
run: npm install
|
|
|
|
- name: npm-test
|
|
run: npm test
|