Skip to content

GLSP-1654: add glsp repo command (#1655) #14

GLSP-1654: add glsp repo command (#1655)

GLSP-1654: add glsp repo command (#1655) #14

Workflow file for this run

name: Test
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches: [master]
paths:
- 'dev-packages/cli/**'
pull_request:
branches: [master]
paths:
- 'dev-packages/cli/**'
jobs:
test:
name: Test
timeout-minutes: 60
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: 22.x
- name: Install
run: |
yarn install
- name: Test
run: |
yarn test:ci
- name: Publish Test Report
uses: ctrf-io/github-test-reporter@646f98cfc16c6f7a0e1f6100cabe2deb95dd2eef # v1.0.22
with:
report-path: 'dev-packages/*/ctrf/*.json'
summary-report: true
file-report: true
if: always()