Skip to content

fix dayjs ci problem by update codecov #633

fix dayjs ci problem by update codecov

fix dayjs ci problem by update codecov #633

Workflow file for this run

name: Lint & Unit Test
on:
push:
branches: [ master, dev ]
pull_request:
branches: [dev]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 12, 14, 16, 18 ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run Lint
run: npm run lint
- name: Run tests
run: npm test
steps:

Check failure on line 27 in .github/workflows/check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/check.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
- uses: actions/checkout@main
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}