Skip to content

Daterange picker

Daterange picker #28

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]
node-version: [lts/*] # latest LTS version of Node
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