Skip to content

feat: Basestack Forms Preview, Improvements, Fixes and other updates … #245

feat: Basestack Forms Preview, Improvements, Fixes and other updates …

feat: Basestack Forms Preview, Improvements, Fixes and other updates … #245

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
jobs:
build:
name: Lint, Test and Build
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 21.1.0
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test