Skip to content

Fix that authentication in vscode respects the server url path #270

Fix that authentication in vscode respects the server url path

Fix that authentication in vscode respects the server url path #270

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Volta
uses: volta-cli/action@5c175f92dea6f48441c436471e6479dbc192e194 # v4.2.1
with:
node-version: 20.10.0
npm-version: 10.2.3
- name: Install
shell: bash
run: |
npm ci
- name: Lint
run: |
npm run lint
build:
strategy:
fail-fast: false
matrix:
node-version: [20.10.0]
npm-version: [10.2.3]
os: [windows-latest, ubuntu-latest]
name: Build (${{ matrix.os }}, 'node ${{ matrix.node-version }}', 'npm ${{ matrix.npm-version }}')
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Volta
uses: volta-cli/action@5c175f92dea6f48441c436471e6479dbc192e194 # v4.2.1
with:
node-version: ${{ matrix.node-version }}
- name: Install
shell: bash
run: |
npm ci
- name: Build
shell: bash
run: |
npm run build
- name: Test
shell: bash
run: |
npm run test