This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
chore: next dev cycle #803
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.0 | |
- name: yarn install | |
run: yarn install | |
- name: yarn build | |
run: yarn build | |
- name: yarn test | |
run: yarn test | |
- name: codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
name: codecov # optional | |
flags: unittest | |
fail_ci_if_error: false # optional (default = false) | |
version: "v0.1.15" | |
#directory: ./coverage/reports/ | |
#files: ./coverage1.xml,./coverage2.xml | |
verbose: true # optional (default = false) |