Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
fix: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rolu01 committed Jan 10, 2024
1 parent e54a80c commit cee7bab
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 72 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
Expand All @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- run: |
sudo apt-get install python2.7
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
Expand All @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- run: |
sudo apt-get install python2.7
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
Expand All @@ -38,7 +38,7 @@ jobs:
echo ::set-output name=major_version_tag::$MAJOR_V_TAG
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- run: |
sudo apt-get install python2.7
Expand Down
178 changes: 115 additions & 63 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cee7bab

Please sign in to comment.