Skip to content

Commit

Permalink
Updated github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tsoganov committed Dec 17, 2024
1 parent 43303de commit c25b890
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,24 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [22.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf ssh://[email protected]/
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci

- run: npm ci --verbose
- run: npm run build --if-present
- name: run tests
env:
HOST: localhost
Expand Down

0 comments on commit c25b890

Please sign in to comment.