Files
CookieMonster/.github/workflows/main.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 10: mapping key "run" already defined at line 9 line 11: mapping key "run" already defined at line 9 line 11: mapping key "run" already defined at line 10
2021-01-26 23:20:39 +01:00

14 lines
280 B
YAML

name: CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn init
run: yarn add eslint --dev
run: yarn run eslint --init
- name: Run ESLint
run: eslint . --ext .js