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

npm audit fix #247

Closed
wants to merge 13 commits into from
Closed
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
20 changes: 13 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Clone vscode-systemverilog
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
id: node
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 16
cache: npm
- name: Install NPM dependencies
run: npm ci --production=false --unsafe-perm
- name: Compile extension
Expand All @@ -33,8 +33,14 @@ jobs:
uses: GabrielBB/xvfb-action@v1
with:
run: npm run coverage
working-directory: ./
options: ''
working-directory: ${{ github.workspace }}
- name: Upload extension logs
uses: actions/upload-artifact@v4
if: failure()
with:
name: extension-logs
path: ${{ github.workspace }}/test/logs
if-noo-files-found: ignore
- name: Verify files
if: runner.os == 'Linux'
run: ls -l dist/client/extension.js dist/server/server.js coverage/index.html
Expand All @@ -43,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone vscode-systemverilog
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install NPM dependencies
run: npm ci --production=false --unsafe-perm
- name: Compile ANTLR
Expand Down
Loading
Loading