mirror of
https://github.com/Cyclenerd/meshcore-bot.git
synced 2026-03-28 17:42:46 +01:00
23 lines
364 B
YAML
23 lines
364 B
YAML
name: "CI"
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
name: CI/CD Test
|
|
# https://github.com/actions/virtual-environments/
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: 🛎️ Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Dependencies
|
|
run: npm ci
|
|
|
|
- name: Lint
|
|
run: npx eslint meshcore-bot.js
|