Skip to content

Commit

Permalink
fix ci node version
Browse files Browse the repository at this point in the history
  • Loading branch information
lwinmoehein committed Nov 7, 2023
1 parent f92a29a commit 1c2bc9e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,23 @@ jobs:

runs-on: ubuntu-latest

strategy:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
node-version: 16
fetch-depth: 2

- name: Install dependencies
- name: Set up Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x

- name: Install dependencies
run: npm install

- name: Run tests
run: npm run test

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1

0 comments on commit 1c2bc9e

Please sign in to comment.