Skip to content

Commit

Permalink
Add linting to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Mar 16, 2024
1 parent 155ee7e commit 55f354b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Node.js CI
name: CI

on:
push:
Expand All @@ -7,13 +7,13 @@ on:
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 20
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test

0 comments on commit 55f354b

Please sign in to comment.