Skip to main content
Module

x/value_schema/.github/workflows/verify-on-windows.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: pushname: Windowsjobs: verify: name: Verify runs-on: windows-latest strategy: matrix: nodejs: - 12 fail-fast: false steps: - name: Turn off auto-crlf run: git config --global core.autocrlf false - 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: Verify run: npm run verify