Skip to content

Update yaml-language-server #37

Update yaml-language-server

Update yaml-language-server #37

Workflow file for this run

name: CI
on:
push:
branches:
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Check formatting
run: pnpm lint
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test