AppMap: Skip tests that are currently broken with appmap-node #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
cache: npm | |
- name: Install dependencies | |
run: npm ci --legacy-peer-deps | |
- name: Build packages | |
run: npm run build | |
- name: Run tests with AppMap | |
run: npx appmap-node npm run test |