Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Aug 11, 2023
1 parent 753a412 commit 3cddea8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 22 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/ci-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
# - name: npm 7
# # npm workspaces requires npm v7 or higher
# run: npm i -g npm@7 --registry=https://registry.npmjs.org
- name: Install
run: npm ci

Expand All @@ -41,14 +38,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js 14
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 14

# - name: npm 7
# # npm workspaces requires npm v7 or higher
# run: npm i -g npm@7 --registry=https://registry.npmjs.org
node-version: 16

- name: Install
run: npm ci
Expand All @@ -61,10 +54,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v14
- name: install node v16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: verify packages version consistency accross sub-modules
run: npm run check:versions

Expand Down
15 changes: 4 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
# - name: npm 7
# # npm workspaces requires npm v7 or higher
# run: npm i -g npm@7 --registry=https://registry.npmjs.org
- name: Install
run: npm ci

Expand All @@ -41,14 +38,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js 14
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 14

# - name: npm 7
# # npm workspaces requires npm v7 or higher
# run: npm i -g npm@7 --registry=https://registry.npmjs.org
node-version: 16

- name: Install
run: npm ci
Expand All @@ -61,10 +54,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v14
- name: install node v16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: verify packages version consistency accross sub-modules
run: npm run check:versions

Expand Down

0 comments on commit 3cddea8

Please sign in to comment.