Version 0.14.0
#278
Workflow file for this run
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: branch | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: { CODE_VERSION: 'stable', DISPLAY: ':99.0' } | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up npm | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Set up GHC environment | |
run: stack setup | |
- run: npm install | |
- name: Run npm test | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: npm test | |
- name: Add GHC extension output (on failure) | |
if: failure() | |
run: find .vscode-test/udd/logs -name *GHC* -exec cat {} \; |