Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
inverse committed Sep 8, 2024
1 parent f90a28f commit 7fff2be
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/lint.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: CI
on:
push:
branches: [master]
Expand Down Expand Up @@ -26,3 +26,22 @@ jobs:
npm run lint:prettier
env:
CI: true
test:
name: Run lint:prettier
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run test
run: |
npm test

0 comments on commit 7fff2be

Please sign in to comment.