Skip to content

feat(STATFLO-1093): update tailwind to come from ui library #97

feat(STATFLO-1093): update tailwind to come from ui library

feat(STATFLO-1093): update tailwind to come from ui library #97

Workflow file for this run

name: CI/CD
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Run the tests
run: yarn test
- name: Run the linter
run: yarn lint
- name: Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: yarn build