Skip to content

Autocomplete popover #26

Autocomplete popover

Autocomplete popover #26

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master, next ]
pull_request:
branches: [ next ]
jobs:
check_formatting_and_linting:
name: "Check formatting and linting"
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn format:check
build:
name: "Build all targets"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn build:all
- run: yarn build:all:prod