Skip to content

Bump @babel/traverse from 7.9.0 to 7.23.2 #343

Bump @babel/traverse from 7.9.0 to 7.23.2

Bump @babel/traverse from 7.9.0 to 7.23.2 #343

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
run:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Clone repository
uses: actions/checkout@v1
with:
fetch-depth: 3
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: 13.x
- run: node --version
- run: npm --version
- name: Install npm dependencies
run: npm i
- name: Run vsce prepublish
run: npm run vscode:prepublish
- name: Run tests
env:
DISPLAY: :99.0
run: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
npm test
- name: Run Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}