Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
pull_request:

jobs:
lint:
runs-on: blacksmith-4vcpu-ubuntu-2404
Comment thread
acoelhosantos marked this conversation as resolved.
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Comment thread
acoelhosantos marked this conversation as resolved.
- run: npm ci
- run: npm run lint
Loading