Skip to main content
Module

x/value_schema/.github/workflows/code-coverage.yml

simple, easy-to-use, and declarative input validator; supports Node.js, TypeScript, and Deno
Go to Latest
File
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
on: pull_requestname: Code Coveragejobs: code-coverage: name: Report Code Coverage runs-on: ${{ matrix.os }} strategy: matrix: os: - ubuntu-latest nodejs: - 12 fail-fast: false steps: - name: Checkout source codes uses: actions/checkout@v2 - name: Install Node.js uses: actions/setup-node@v1 with: node-version: ${{ matrix.nodejs }} - name: Output versions run: | node -v npm -v - name: Install dependencies run: npm ci - name: Test run: npm test - name: Report code coverage uses: codecov/codecov-action@v1.0.2 with: token: ${{ secrets.CODECOV_TOKEN }}