Skip to content

Add initial keyboard shortcuts #117

Add initial keyboard shortcuts

Add initial keyboard shortcuts #117

Workflow file for this run

# This workflow will be triggered by a GitHub pull-request.
---
name: Build node packages
on:
pull_request:
branches: ["*"]
push:
branches: ["main", "release-*"]
env:
CARGO_TERM_COLOR: always
FORCE_COLOR: true
jobs:
build_packages:
name: Build packages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci --workspaces
- name: Lint all workspaces
run: npm run lint:ci --workspaces
- name: Build all workspaces
run: npm run build --workspaces --if-present