Skip to content

Merge pull request #25 from shapeshift/add-feature-flag-helper #38

Merge pull request #25 from shapeshift/add-feature-flag-helper

Merge pull request #25 from shapeshift/add-feature-flag-helper #38

Workflow file for this run

name: CI
# CI temporarily disabled as we crunch the first commits and PRs of this repo to avoid spamming it.
# on:
# push:
# branches:
# - main
# - develop
# pull_request:
# branches:
# - main
# - develop
jobs:
install-and-cache:
name: Install Lint Type-check
container: node:18-bullseye
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Cache
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Type check
run: yarn type-check
- name: Test
run: yarn test