Skip to content

Merge pull request #5 from Statflo/STATFLO-724 #2

Merge pull request #5 from Statflo/STATFLO-724

Merge pull request #5 from Statflo/STATFLO-724 #2

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/codecov-action@v2.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: yarn build