Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
blu3berryys authored Dec 30, 2024
1 parent 8d53b9e commit e7a36bd
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: CI

on:
- push
- pull_request
push:
pull_request:
workflow_dispatch:

jobs:
test:
name: Node.js ${{ matrix.node-version }}
Expand All @@ -12,10 +15,18 @@ jobs:
node-version:
- 20
- 18

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

- name: Install dependencies
run: npm install

- name: Test
run: npm test

0 comments on commit e7a36bd

Please sign in to comment.