38 lines
697 B
YAML
38 lines
697 B
YAML
name: UI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "develop"
|
|
- "1.0-develop"
|
|
pull_request:
|
|
branches:
|
|
- "develop"
|
|
- "1.0-develop"
|
|
|
|
jobs:
|
|
build-and-test:
|
|
name: Build and Test
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node-version: [16, 18]
|
|
steps:
|
|
- name: Code Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: "yarn"
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: yarn build
|
|
|
|
- name: Tests
|
|
run: yarn test
|