Skip to content

Commit

Permalink
Modernize CI
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Nov 8, 2023
1 parent d87ddb5 commit 22019b8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node 18
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: npm install
- run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node 18
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: npm install
- run: npm run build
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node 18
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: npm install
- run: npm run test
report:
Expand All @@ -42,10 +42,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node 18
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: npm install
- run: npx c8 --reporter=lcov mocha
- name: Report to Coveralls
Expand Down

0 comments on commit 22019b8

Please sign in to comment.