Skip to content

Es linter

Es linter #485

Workflow file for this run

name: CI
on:
push:
branches: [ master, alpha, beta ]
pull_request:
branches: [ master, alpha, beta ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 15 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: 15, Col: 14): Unexpected value '' .github/workflows/ci.yml (Line: 16, Col: 7): Unexpected value 'node-version'
node-version: [16.14.x]
env:
NPM_EMAIL: ''
NPM_TOKEN: ''
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run test