Skip to main content
Module

x/value_schema/.github/workflows/verify-on-linux.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: push: branches: - master - develop - "v*" pull_request:name: Linuxjobs: verify: name: Verify on Node.js v${{ matrix.nodejs }} runs-on: Ubuntu-latest strategy: matrix: nodejs: - 8 - 10 - 12 fail-fast: false steps: - name: Checkout source codes uses: actions/checkout@v1 - name: Install Node.js uses: actions/setup-node@v1 with: node-version: ${{ matrix.nodejs }} - name: Update global packages run: npm i -g node-gyp - name: Install dependencies run: npm i - name: Verify run: npm run verify - name: Report code coverage uses: codecov/codecov-action@v1.0.2 with: token: ${{ secrets.CODECOV_TOKEN }}