Skip to content

ascii-50: change codecov action --fix #4

ascii-50: change codecov action --fix

ascii-50: change codecov action --fix #4

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
#
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run tests and collect coverage
run: yarn test

Check failure on line 26 in .github/workflows/codecov.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/codecov.yaml

Invalid workflow file

You have an error in your yaml syntax on line 26
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}