Skip to content

Merge pull request #155 from semgrep/gha/bump-version-1.79.0-98723106… #348

Merge pull request #155 from semgrep/gha/bump-version-1.79.0-98723106…

Merge pull request #155 from semgrep/gha/bump-version-1.79.0-98723106… #348

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "**.md"
push:
branches:
- master
paths-ignore:
- "**.md"
jobs:
vsce-test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Semgrep
run: python -m pip install semgrep
- name: Setup
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: install dependencies
run: npm ci
- name: pretest
run: npm run pretest
- name: run native tests (Linux)
if: matrix.os == 'ubuntu-latest'
run: xvfb-run -a npm run test-native
- name: run native tests (MacOS)
if: matrix.os == 'macos-latest'
run: npm run test-native
- name: uninstall semgrep
run: python -m pip uninstall -y semgrep
- name: run js tests (Linux)
if: matrix.os == 'ubuntu-latest'
run: xvfb-run -a npm run test-js
- name: run js tests (MacOS)
if: matrix.os == 'macos-latest'
run: npm run test-js
- name: upload semgrep results for windows
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: semgrep-results
path: ./*_results.json
vsce-test-windows:
needs: vsce-test
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: install dependencies
run: npm ci
# This is needed so download-lspjs.sh can run
- name: configure npm
run: npm config set script-shell "C:\\Program Files\\Git\\Bin\\bash.exe"
# windows doesn't like long paths :(
- name: Support longpaths
run: git config --system core.longpaths true
- name: pretest
run: npm run pretest
- name: download semgrep results from linux
uses: actions/download-artifact@v3
with:
name: semgrep-results
path: ./
- name: run js tests (Windows)
run: npm run test-js
vsce-prepublish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: 16
- run: npm ci
- run: npm run vscode:prepublish