Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(package.json): support node 18 #42

Merged
merged 1 commit into from
Feb 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 11 additions & 18 deletions .github/workflows/test-coverage-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,24 @@ name: Converted Workflow
branches:
- main
jobs:
Build:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
os:
- ubuntu-18.04
node-version:
- 12.x
- 14.x
- 16.x
- 18.x
runs-on: '${{ matrix.os }}'
node-version: [14.x,16.x,18.x]
steps:
- name: 'Set up Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '${{ matrix.node-version }}'
- uses: actions/checkout@v2
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: ls -lha ${{ github.workspace }}
- run: cat ${{ github.workspace }}/rabbit_enabled_plugins
- run: npm run run-container
- run: sleep 10
- run: npm i
- run: npm ci
- run: sleep 5
- run: npm run ci-coverage
- run: npm run remove-container

- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Project Specific
tmp/
plato/
package-lock.json

# Logs
log/
Expand Down
Loading