Sha256: fa414203ad6a90546cd8ddf043f37916726de0e195bda0c499874d6a113820c0
Contents?: true
Size: 664 Bytes
Versions: 7
Compression:
Stored size: 664 Bytes
Contents
name: validate-pubnub-yml # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. on: [push] jobs: build: name: Validate PubNub yml runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setup-node@v1 with: node-version: '12.x' - name: Install dependencies run: | npm install ajv@6.12.6 npm install yaml@1.10.0 npm install node-fetch@2.6.1 npm install chalk@2.4.2 - name: Validate run: GITHUB_TOKEN=${{ secrets.GH_TOKEN }} node ./.github/workflows/validate-yml.js
Version data entries
7 entries across 7 versions & 1 rubygems