Skip to content

Merge branch 'main' of github.com:SylarLong/lunar-lite #10

Merge branch 'main' of github.com:SylarLong/lunar-lite

Merge branch 'main' of github.com:SylarLong/lunar-lite #10

Workflow file for this run

name: Codecov
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}