Skip to content

Merge pull request #18 from rubyatscale/update/modernize-tooling #6

Merge pull request #18 from rubyatscale/update/modernize-tooling

Merge pull request #18 from rubyatscale/update/modernize-tooling #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Compile TypeScript
run: yarn run vscode:prepublish
- name: Run tests
run: xvfb-run -a yarn test