Skip to content

Fix c8 codecov upstream issue for the time being #154

Fix c8 codecov upstream issue for the time being

Fix c8 codecov upstream issue for the time being #154

Workflow file for this run

name: CI
on: push
jobs:
test:
env:
NODE_ENV: development
runs-on: ubuntu-latest
strategy:
matrix:
node-version: 14.x

Check failure on line 10 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 10, Col: 23): Unexpected value '14.x'
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Test
run: |
npm install -g codecov
npm install
npm test
codecov