Skip to content

v1.2.17

v1.2.17 #508

Workflow file for this run

name: Build and Test
on:
push:
branches:
# - coverage
- master
- 1.2.x
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- name: Build
run: |
yarn
yarn clean
yarn lint
yarn api
- name: Test
run: yarn test
#
# - uses: codecov/codecov-action@v1
# if: matrix.node-version == '12.x'
# with:
# file: ./coverage/lcov.info
# name: codecov-umbrella
# fail_ci_if_error: true