Skip to content

Commit

Permalink
Add GitHub Actions workflow to check prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
MattIPv4 committed Dec 7, 2023
1 parent 5372e35 commit 446977c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test

0 comments on commit 446977c

Please sign in to comment.