Skip to content

Commit

Permalink
fix ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
bucko13 committed Feb 13, 2024
1 parent d21ef4a commit aeef037
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ jobs:
node-version: ["20.x"]

steps:
- name: Install Dependencies
run: npm install
- uses: actions/checkout@v4
- name: Use Node.js
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm run ci
node-version: 20

- name: Install Dependencies
run: npm install

- name: Run tests
run: npm run ci

0 comments on commit aeef037

Please sign in to comment.