Skip to content

indent

indent #11

Workflow file for this run

name: Validate PR on push
on:
push:
branches: [master, staging, trying]
pull_request:
jobs:
build:
name: Build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install --frozen-lockfile
- run: npm run pretest
name: Publish the VS Code Extension to Open VSX

Check failure on line 24 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install --frozen-lockfile
- run: npm install -g vsce
- run: npm run pretest
- name: Finally, publish to the marketplace.
run: npm run publish --registry=https://open-vsx.org/
env:
VSCE_PAT: ${{ secrets.OPEN_VSX_MARKETPLACE_TOKEN }}