Skip to content

Merge pull request #432 from iCHEF/release/7.1.0 #230

Merge pull request #432 from iCHEF/release/7.1.0

Merge pull request #432 from iCHEF/release/7.1.0 #230

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- master
- develop
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Install packages with cache
uses: iCHEF/npm-install-with-cache-action@v1
with:
is-monorepo: true
- name: Run linter
run: yarn lint
- name: Run tests
run: yarn test
- name: Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: "./coverage/coverage-final.json"