hallee / eslint-action

✨ ESLint GitHub Action with inline lint annotations for pull requests
MIT License
120 stars 38 forks source link

Error: Cannot find module 'eslint' #25

Closed jmealo closed 4 years ago

jmealo commented 4 years ago

Hello, I followed the instructions and am getting an error that eslint cannot be found.

Actions Workflow:

jobs:
  lint:
    name: StandardJs
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: hallee/eslint-action@1.0.3

.eslintrc.js:

module.exports = {
  env: {
    commonjs: true,
    es6: true,
    node: true
  },
  extends: [
    'standard',
    'plugin:jest/recommended'
  ],
  globals: {
    Atomics: 'readonly',
    SharedArrayBuffer: 'readonly'
  },
  parserOptions: {
    ecmaVersion: 2018
  },
  rules: {
  }
}

Output:

2020-06-29T20:24:25.3498409Z ##[section]Starting: Request a runner to run this job
2020-06-29T20:24:25.5190896Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2020-06-29T20:24:25.5190939Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-06-29T20:24:25.5190964Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-06-29T20:24:25.6860243Z ##[section]Finishing: Request a runner to run this job
2020-06-29T20:24:31.8089512Z Current runner version: '2.263.0'
2020-06-29T20:24:31.8118952Z ##[group]Operating System
2020-06-29T20:24:31.8119605Z Ubuntu
2020-06-29T20:24:31.8119841Z 18.04.4
2020-06-29T20:24:31.8120019Z LTS
2020-06-29T20:24:31.8120248Z ##[endgroup]
2020-06-29T20:24:31.8120505Z ##[group]Virtual Environment
2020-06-29T20:24:31.8120864Z Environment: ubuntu-18.04
2020-06-29T20:24:31.8121080Z Version: 20200621.1
2020-06-29T20:24:31.8121390Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20200621.1/images/linux/Ubuntu1804-README.md
2020-06-29T20:24:31.8121679Z ##[endgroup]
2020-06-29T20:24:31.8122906Z Prepare workflow directory
2020-06-29T20:24:31.8325421Z Prepare all required actions
2020-06-29T20:24:31.8337399Z Download action repository 'actions/checkout@v2'
2020-06-29T20:24:33.8489303Z Download action repository 'hallee/eslint-action@1.0.3'
2020-06-29T20:24:34.1560400Z Build container for action use: '/home/runner/work/_actions/hallee/eslint-action/1.0.3/Dockerfile'.
2020-06-29T20:24:34.1626286Z ##[command]/usr/bin/docker build -t 3888d3:4c7f831952ea4b068e7ed87921c55ee6 -f "/home/runner/work/_actions/hallee/eslint-action/1.0.3/Dockerfile" "/home/runner/work/_actions/hallee/eslint-action/1.0.3"
2020-06-29T20:24:34.7824913Z Sending build context to Docker daemon    194kB
2020-06-29T20:24:34.7832446Z 
2020-06-29T20:24:34.7833122Z Step 1/8 : FROM node:14
2020-06-29T20:24:34.8985529Z 14: Pulling from library/node
2020-06-29T20:24:35.0603889Z 81fc19181915: Already exists
2020-06-29T20:24:35.1277378Z ee49ee6a23d1: Already exists
2020-06-29T20:24:35.1480953Z 828510924538: Already exists
2020-06-29T20:24:35.1559235Z a8f58c4fcca0: Already exists
2020-06-29T20:24:35.1576365Z 33699d7df21e: Already exists
2020-06-29T20:24:35.1840993Z 923705ffa8f8: Already exists
2020-06-29T20:24:35.1915919Z ae06f9217656: Pulling fs layer
2020-06-29T20:24:35.1918163Z 39c7f0f9ab3c: Pulling fs layer
2020-06-29T20:24:35.1918877Z df076510734b: Pulling fs layer
2020-06-29T20:24:35.3058384Z df076510734b: Verifying Checksum
2020-06-29T20:24:35.3076423Z df076510734b: Download complete
2020-06-29T20:24:35.3860454Z 39c7f0f9ab3c: Verifying Checksum
2020-06-29T20:24:35.3861255Z 39c7f0f9ab3c: Download complete
2020-06-29T20:24:35.5667658Z ae06f9217656: Download complete
2020-06-29T20:24:37.1411878Z ae06f9217656: Pull complete
2020-06-29T20:24:37.3980533Z 39c7f0f9ab3c: Pull complete
2020-06-29T20:24:37.4316027Z df076510734b: Pull complete
2020-06-29T20:24:37.4337231Z Digest: sha256:719d5524c7e927c2c3e49338c7dde7fe56cb5fdb3566cdaba5b37cc05ddf15da
2020-06-29T20:24:37.4368675Z Status: Downloaded newer image for node:14
2020-06-29T20:24:37.4369969Z  ---> dcda6cd5e439
2020-06-29T20:24:37.4370394Z Step 2/8 : LABEL com.github.actions.name="ESLint Action"
2020-06-29T20:24:39.5571451Z  ---> Running in 94a818b5b6e6
2020-06-29T20:24:41.5088309Z Removing intermediate container 94a818b5b6e6
2020-06-29T20:24:41.5088834Z  ---> 5c14725ca1d3
2020-06-29T20:24:41.5089050Z Step 3/8 : LABEL com.github.actions.description="Lint your Javascript projects with inline lint error annotations on pull requests."
2020-06-29T20:24:41.5431288Z  ---> Running in 25aed2d2f113
2020-06-29T20:24:42.8833691Z Removing intermediate container 25aed2d2f113
2020-06-29T20:24:42.8834016Z  ---> ebef44799a40
2020-06-29T20:24:42.8834304Z Step 4/8 : LABEL com.github.actions.icon="code"
2020-06-29T20:24:42.9240748Z  ---> Running in baf0f5e93dc3
2020-06-29T20:24:44.2520827Z Removing intermediate container baf0f5e93dc3
2020-06-29T20:24:44.2520985Z  ---> 517c52160f18
2020-06-29T20:24:44.2521111Z Step 5/8 : LABEL com.github.actions.color="yellow"
2020-06-29T20:24:44.2874226Z  ---> Running in 3d10a986b1a3
2020-06-29T20:24:45.6606359Z Removing intermediate container 3d10a986b1a3
2020-06-29T20:24:45.6606537Z  ---> efb15f6e628b
2020-06-29T20:24:45.6606670Z Step 6/8 : RUN apt install make gcc g++ python git
2020-06-29T20:24:45.6933911Z  ---> Running in e1876a65030e
2020-06-29T20:24:47.3901516Z [91m
2020-06-29T20:24:47.3902152Z WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
2020-06-29T20:24:47.3902667Z 
2020-06-29T20:24:47.6596913Z [0mReading package lists...
2020-06-29T20:24:47.6636025Z Building dependency tree...
2020-06-29T20:24:47.7301951Z Reading state information...
2020-06-29T20:24:47.8383208Z make is already the newest version (4.1-9.1).
2020-06-29T20:24:47.8383418Z gcc is already the newest version (4:6.3.0-4).
2020-06-29T20:24:47.8383548Z g++ is already the newest version (4:6.3.0-4).
2020-06-29T20:24:47.8383682Z git is already the newest version (1:2.11.0-3+deb9u7).
2020-06-29T20:24:47.8383815Z python is already the newest version (2.7.13-2).
2020-06-29T20:24:47.8383948Z python set to manually installed.
2020-06-29T20:24:47.8384084Z 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2020-06-29T20:24:49.3695948Z Removing intermediate container e1876a65030e
2020-06-29T20:24:49.3831724Z  ---> 26a08937765f
2020-06-29T20:24:49.3832338Z Step 7/8 : COPY lib /action/lib
2020-06-29T20:24:50.7602131Z  ---> 0cc300994cca
2020-06-29T20:24:50.7602973Z Step 8/8 : ENTRYPOINT ["/action/lib/entrypoint.sh"]
2020-06-29T20:24:50.7844074Z  ---> Running in a381fe918ebd
2020-06-29T20:24:52.1518580Z Removing intermediate container a381fe918ebd
2020-06-29T20:24:52.1518819Z  ---> 770f57dbfd58
2020-06-29T20:24:52.1521619Z Successfully built 770f57dbfd58
2020-06-29T20:24:52.1676276Z Successfully tagged 3888d3:4c7f831952ea4b068e7ed87921c55ee6
2020-06-29T20:24:52.1949765Z ##[group]Run actions/checkout@v2
2020-06-29T20:24:52.1950054Z with:
2020-06-29T20:24:52.1950316Z   repository: jmealo/<redacted>
2020-06-29T20:24:52.1950654Z   token: ***
2020-06-29T20:24:52.1950781Z   ssh-strict: true
2020-06-29T20:24:52.1950904Z   persist-credentials: true
2020-06-29T20:24:52.1951028Z   clean: true
2020-06-29T20:24:52.1951161Z   fetch-depth: 1
2020-06-29T20:24:52.1951284Z   lfs: false
2020-06-29T20:24:52.1951404Z   submodules: false
2020-06-29T20:24:52.1951525Z ##[endgroup]
2020-06-29T20:24:52.6237850Z Syncing repository: jmealo/<redacted>
2020-06-29T20:24:52.6238255Z ##[group]Getting Git version info
2020-06-29T20:24:52.6239089Z Working directory is '/home/runner/work/<redacted>/<redacted>'
2020-06-29T20:24:52.6303301Z [command]/usr/bin/git version
2020-06-29T20:24:52.6444613Z git version 2.27.0
2020-06-29T20:24:52.6467723Z ##[endgroup]
2020-06-29T20:24:52.6474840Z Deleting the contents of '/home/runner/work/<redacted>/<redacted>'
2020-06-29T20:24:52.6478424Z ##[group]Initializing the repository
2020-06-29T20:24:52.6482140Z [command]/usr/bin/git init /home/runner/work/<redacted>/<redacted>
2020-06-29T20:24:52.6565593Z Initialized empty Git repository in /home/runner/work/<redacted>/<redacted>/.git/
2020-06-29T20:24:52.6575884Z [command]/usr/bin/git remote add origin https://github.com/jmealo/<redacted>
2020-06-29T20:24:52.6640518Z ##[endgroup]
2020-06-29T20:24:52.6641262Z ##[group]Disabling automatic garbage collection
2020-06-29T20:24:52.6642244Z [command]/usr/bin/git config --local gc.auto 0
2020-06-29T20:24:52.6677992Z ##[endgroup]
2020-06-29T20:24:52.6683994Z ##[group]Setting up auth
2020-06-29T20:24:52.6690068Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2020-06-29T20:24:52.6733425Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-06-29T20:24:52.7129408Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2020-06-29T20:24:52.7187572Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-06-29T20:24:52.7472937Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2020-06-29T20:24:52.7526255Z ##[endgroup]
2020-06-29T20:24:52.7526830Z ##[group]Fetching the repository
2020-06-29T20:24:52.7537291Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +37bde7401208afd6868a0c89ed9af420b2a7448d:refs/remotes/pull/3/merge
2020-06-29T20:24:53.0824581Z remote: Enumerating objects: 420, done.        
2020-06-29T20:24:53.0826485Z remote: Counting objects:   0% (1/420)        
2020-06-29T20:24:53.0828133Z remote: Counting objects:   1% (5/420)        
2020-06-29T20:24:53.0829740Z remote: Counting objects:   2% (9/420)        
2020-06-29T20:24:53.0829998Z remote: Counting objects:   3% (13/420)        
2020-06-29T20:24:53.0833751Z remote: Counting objects:   4% (17/420)        
2020-06-29T20:24:53.0834926Z remote: Counting objects:   5% (21/420)        
2020-06-29T20:24:53.0835091Z remote: Counting objects:   6% (26/420)        
2020-06-29T20:24:53.0835610Z remote: Counting objects:   7% (30/420)        
2020-06-29T20:24:53.0835751Z remote: Counting objects:   8% (34/420)        
2020-06-29T20:24:53.0835883Z remote: Counting objects:   9% (38/420)        
2020-06-29T20:24:53.0836422Z remote: Counting objects:  10% (42/420)        
2020-06-29T20:24:53.0836558Z remote: Counting objects:  11% (47/420)        
2020-06-29T20:24:53.0837070Z remote: Counting objects:  12% (51/420)        
2020-06-29T20:24:53.0837211Z remote: Counting objects:  13% (55/420)        
2020-06-29T20:24:53.0838208Z remote: Counting objects:  14% (59/420)        
2020-06-29T20:24:53.0838604Z remote: Counting objects:  15% (63/420)        
2020-06-29T20:24:53.0838745Z remote: Counting objects:  16% (68/420)        
2020-06-29T20:24:53.0838880Z remote: Counting objects:  17% (72/420)        
2020-06-29T20:24:53.0839471Z remote: Counting objects:  18% (76/420)        
2020-06-29T20:24:53.0839614Z remote: Counting objects:  19% (80/420)        
2020-06-29T20:24:53.0840085Z remote: Counting objects:  20% (84/420)        
2020-06-29T20:24:53.0840220Z remote: Counting objects:  21% (89/420)        
2020-06-29T20:24:53.0840354Z remote: Counting objects:  22% (93/420)        
2020-06-29T20:24:53.0841008Z remote: Counting objects:  23% (97/420)        
2020-06-29T20:24:53.0841763Z remote: Counting objects:  24% (101/420)        
2020-06-29T20:24:53.0841914Z remote: Counting objects:  25% (105/420)        
2020-06-29T20:24:53.0842050Z remote: Counting objects:  26% (110/420)        
2020-06-29T20:24:53.0842181Z remote: Counting objects:  27% (114/420)        
2020-06-29T20:24:53.0842860Z remote: Counting objects:  28% (118/420)        
2020-06-29T20:24:53.0843192Z remote: Counting objects:  29% (122/420)        
2020-06-29T20:24:53.0843325Z remote: Counting objects:  30% (126/420)        
2020-06-29T20:24:53.0843457Z remote: Counting objects:  31% (131/420)        
2020-06-29T20:24:53.0845299Z remote: Counting objects:  32% (135/420)        
2020-06-29T20:24:53.0845617Z remote: Counting objects:  33% (139/420)        
2020-06-29T20:24:53.0845756Z remote: Counting objects:  34% (143/420)        
2020-06-29T20:24:53.0845918Z remote: Counting objects:  35% (147/420)        
2020-06-29T20:24:53.0846053Z remote: Counting objects:  36% (152/420)        
2020-06-29T20:24:53.0847819Z remote: Counting objects:  37% (156/420)        
2020-06-29T20:24:53.0847952Z remote: Counting objects:  38% (160/420)        
2020-06-29T20:24:53.0848083Z remote: Counting objects:  39% (164/420)        
2020-06-29T20:24:53.0848217Z remote: Counting objects:  40% (168/420)        
2020-06-29T20:24:53.0848356Z remote: Counting objects:  41% (173/420)        
2020-06-29T20:24:53.0849743Z remote: Counting objects:  42% (177/420)        
2020-06-29T20:24:53.0849891Z remote: Counting objects:  43% (181/420)        
2020-06-29T20:24:53.0850051Z remote: Counting objects:  44% (185/420)        
2020-06-29T20:24:53.0850181Z remote: Counting objects:  45% (189/420)        
2020-06-29T20:24:53.0850794Z remote: Counting objects:  46% (194/420)        
2020-06-29T20:24:53.0850931Z remote: Counting objects:  47% (198/420)        
2020-06-29T20:24:53.0851062Z remote: Counting objects:  48% (202/420)        
2020-06-29T20:24:53.0851194Z remote: Counting objects:  49% (206/420)        
2020-06-29T20:24:53.0851519Z remote: Counting objects:  50% (210/420)        
2020-06-29T20:24:53.0851917Z remote: Counting objects:  51% (215/420)        
2020-06-29T20:24:53.0852332Z remote: Counting objects:  52% (219/420)        
2020-06-29T20:24:53.0852763Z remote: Counting objects:  53% (223/420)        
2020-06-29T20:24:53.0853378Z remote: Counting objects:  54% (227/420)        
2020-06-29T20:24:53.0853660Z remote: Counting objects:  55% (231/420)        
2020-06-29T20:24:53.0854152Z remote: Counting objects:  56% (236/420)        
2020-06-29T20:24:53.0854613Z remote: Counting objects:  57% (240/420)        
2020-06-29T20:24:53.0855117Z remote: Counting objects:  58% (244/420)        
2020-06-29T20:24:53.0855592Z remote: Counting objects:  59% (248/420)        
2020-06-29T20:24:53.0856080Z remote: Counting objects:  60% (252/420)        
2020-06-29T20:24:53.0856540Z remote: Counting objects:  61% (257/420)        
2020-06-29T20:24:53.0856957Z remote: Counting objects:  62% (261/420)        
2020-06-29T20:24:53.0857485Z remote: Counting objects:  63% (265/420)        
2020-06-29T20:24:53.0857889Z remote: Counting objects:  64% (269/420)        
2020-06-29T20:24:53.0858380Z remote: Counting objects:  65% (273/420)        
2020-06-29T20:24:53.0858871Z remote: Counting objects:  66% (278/420)        
2020-06-29T20:24:53.0859425Z remote: Counting objects:  67% (282/420)        
2020-06-29T20:24:53.0860425Z remote: Counting objects:  68% (286/420)        
2020-06-29T20:24:53.0860885Z remote: Counting objects:  69% (290/420)        
2020-06-29T20:24:53.0861341Z remote: Counting objects:  70% (294/420)        
2020-06-29T20:24:53.0861776Z remote: Counting objects:  71% (299/420)        
2020-06-29T20:24:53.0862205Z remote: Counting objects:  72% (303/420)        
2020-06-29T20:24:53.0864850Z remote: Counting objects:  73% (307/420)        
2020-06-29T20:24:53.0866376Z remote: Counting objects:  74% (311/420)        
2020-06-29T20:24:53.0866586Z remote: Counting objects:  75% (315/420)        
2020-06-29T20:24:53.0866747Z remote: Counting objects:  76% (320/420)        
2020-06-29T20:24:53.0866944Z remote: Counting objects:  77% (324/420)        
2020-06-29T20:24:53.0867078Z remote: Counting objects:  78% (328/420)        
2020-06-29T20:24:53.0867210Z remote: Counting objects:  79% (332/420)        
2020-06-29T20:24:53.0867347Z remote: Counting objects:  80% (336/420)        
2020-06-29T20:24:53.0867485Z remote: Counting objects:  81% (341/420)        
2020-06-29T20:24:53.0867615Z remote: Counting objects:  82% (345/420)        
2020-06-29T20:24:53.0867730Z remote: Counting objects:  83% (349/420)        
2020-06-29T20:24:53.0867861Z remote: Counting objects:  84% (353/420)        
2020-06-29T20:24:53.0867994Z remote: Counting objects:  85% (357/420)        
2020-06-29T20:24:53.0868127Z remote: Counting objects:  86% (362/420)        
2020-06-29T20:24:53.0868257Z remote: Counting objects:  87% (366/420)        
2020-06-29T20:24:53.0868387Z remote: Counting objects:  88% (370/420)        
2020-06-29T20:24:53.0868522Z remote: Counting objects:  89% (374/420)        
2020-06-29T20:24:53.0868659Z remote: Counting objects:  90% (378/420)        
2020-06-29T20:24:53.0868789Z remote: Counting objects:  91% (383/420)        
2020-06-29T20:24:53.0868908Z remote: Counting objects:  92% (387/420)        
2020-06-29T20:24:53.0869041Z remote: Counting objects:  93% (391/420)        
2020-06-29T20:24:53.0869171Z remote: Counting objects:  94% (395/420)        
2020-06-29T20:24:53.0869300Z remote: Counting objects:  95% (399/420)        
2020-06-29T20:24:53.0869601Z remote: Counting objects:  96% (404/420)        
2020-06-29T20:24:53.0869731Z remote: Counting objects:  97% (408/420)        
2020-06-29T20:24:53.0869865Z remote: Counting objects:  98% (412/420)        
2020-06-29T20:24:53.0869998Z remote: Counting objects:  99% (416/420)        
2020-06-29T20:24:53.0870128Z remote: Counting objects: 100% (420/420)        
2020-06-29T20:24:53.0870265Z remote: Counting objects: 100% (420/420), done.        
2020-06-29T20:24:53.0870589Z remote: Compressing objects:   0% (1/359)        
2020-06-29T20:24:53.0870721Z remote: Compressing objects:   1% (4/359)        
2020-06-29T20:24:53.0870855Z remote: Compressing objects:   2% (8/359)        
2020-06-29T20:24:53.0870992Z remote: Compressing objects:   3% (11/359)        
2020-06-29T20:24:53.0873960Z remote: Compressing objects:   4% (15/359)        
2020-06-29T20:24:53.0888726Z remote: Compressing objects:   5% (18/359)        
2020-06-29T20:24:53.0888875Z remote: Compressing objects:   6% (22/359)        
2020-06-29T20:24:53.0892011Z remote: Compressing objects:   7% (26/359)        
2020-06-29T20:24:53.0904024Z remote: Compressing objects:   8% (29/359)        
2020-06-29T20:24:53.0906638Z remote: Compressing objects:   9% (33/359)        
2020-06-29T20:24:53.0912352Z remote: Compressing objects:  10% (36/359)        
2020-06-29T20:24:53.0925063Z remote: Compressing objects:  11% (40/359)        
2020-06-29T20:24:53.0925536Z remote: Compressing objects:  12% (44/359)        
2020-06-29T20:24:53.0930347Z remote: Compressing objects:  13% (47/359)        
2020-06-29T20:24:53.0930494Z remote: Compressing objects:  14% (51/359)        
2020-06-29T20:24:53.0930609Z remote: Compressing objects:  15% (54/359)        
2020-06-29T20:24:53.0930813Z remote: Compressing objects:  16% (58/359)        
2020-06-29T20:24:53.0931100Z remote: Compressing objects:  17% (62/359)        
2020-06-29T20:24:53.0933513Z remote: Compressing objects:  18% (65/359)        
2020-06-29T20:24:53.0933797Z remote: Compressing objects:  19% (69/359)        
2020-06-29T20:24:53.0935341Z remote: Compressing objects:  20% (72/359)        
2020-06-29T20:24:53.0936423Z remote: Compressing objects:  21% (76/359)        
2020-06-29T20:24:53.0939263Z remote: Compressing objects:  22% (79/359)        
2020-06-29T20:24:53.0944689Z remote: Compressing objects:  23% (83/359)        
2020-06-29T20:24:53.0944844Z remote: Compressing objects:  24% (87/359)        
2020-06-29T20:24:53.0948817Z remote: Compressing objects:  25% (90/359)        
2020-06-29T20:24:53.0948989Z remote: Compressing objects:  26% (94/359)        
2020-06-29T20:24:53.0956743Z remote: Compressing objects:  27% (97/359)        
2020-06-29T20:24:53.0962530Z remote: Compressing objects:  28% (101/359)        
2020-06-29T20:24:53.0965451Z remote: Compressing objects:  29% (105/359)        
2020-06-29T20:24:53.0966163Z remote: Compressing objects:  30% (108/359)        
2020-06-29T20:24:53.0969420Z remote: Compressing objects:  31% (112/359)        
2020-06-29T20:24:53.0973209Z remote: Compressing objects:  32% (115/359)        
2020-06-29T20:24:53.0973352Z remote: Compressing objects:  33% (119/359)        
2020-06-29T20:24:53.0973472Z remote: Compressing objects:  34% (123/359)        
2020-06-29T20:24:53.0973607Z remote: Compressing objects:  35% (126/359)        
2020-06-29T20:24:53.0973736Z remote: Compressing objects:  36% (130/359)        
2020-06-29T20:24:53.0973866Z remote: Compressing objects:  37% (133/359)        
2020-06-29T20:24:53.0974006Z remote: Compressing objects:  38% (137/359)        
2020-06-29T20:24:53.0978130Z remote: Compressing objects:  39% (141/359)        
2020-06-29T20:24:53.0979394Z remote: Compressing objects:  40% (144/359)        
2020-06-29T20:24:53.0979538Z remote: Compressing objects:  41% (148/359)        
2020-06-29T20:24:53.0981623Z remote: Compressing objects:  42% (151/359)        
2020-06-29T20:24:53.1019554Z remote: Compressing objects:  43% (155/359)        
2020-06-29T20:24:53.1020799Z remote: Compressing objects:  44% (158/359)        
2020-06-29T20:24:53.1021023Z remote: Compressing objects:  45% (162/359)        
2020-06-29T20:24:53.1021165Z remote: Compressing objects:  46% (166/359)        
2020-06-29T20:24:53.1021287Z remote: Compressing objects:  47% (169/359)        
2020-06-29T20:24:53.1021422Z remote: Compressing objects:  48% (173/359)        
2020-06-29T20:24:53.1021557Z remote: Compressing objects:  49% (176/359)        
2020-06-29T20:24:53.1021694Z remote: Compressing objects:  50% (180/359)        
2020-06-29T20:24:53.1022084Z remote: Compressing objects:  51% (184/359)        
2020-06-29T20:24:53.1022223Z remote: Compressing objects:  52% (187/359)        
2020-06-29T20:24:53.1022358Z remote: Compressing objects:  53% (191/359)        
2020-06-29T20:24:53.1022491Z remote: Compressing objects:  54% (194/359)        
2020-06-29T20:24:53.1022616Z remote: Compressing objects:  55% (198/359)        
2020-06-29T20:24:53.1022750Z remote: Compressing objects:  56% (202/359)        
2020-06-29T20:24:53.1022885Z remote: Compressing objects:  57% (205/359)        
2020-06-29T20:24:53.1023085Z remote: Compressing objects:  58% (209/359)        
2020-06-29T20:24:53.1023221Z remote: Compressing objects:  59% (212/359)        
2020-06-29T20:24:53.1023354Z remote: Compressing objects:  60% (216/359)        
2020-06-29T20:24:53.1023488Z remote: Compressing objects:  61% (219/359)        
2020-06-29T20:24:53.1023620Z remote: Compressing objects:  62% (223/359)        
2020-06-29T20:24:53.1023737Z remote: Compressing objects:  63% (227/359)        
2020-06-29T20:24:53.1023875Z remote: Compressing objects:  64% (230/359)        
2020-06-29T20:24:53.1024007Z remote: Compressing objects:  65% (234/359)        
2020-06-29T20:24:53.1025747Z remote: Compressing objects:  66% (237/359)        
2020-06-29T20:24:53.1027613Z remote: Compressing objects:  67% (241/359)        
2020-06-29T20:24:53.1028149Z remote: Compressing objects:  68% (245/359)        
2020-06-29T20:24:53.1030372Z remote: Compressing objects:  69% (248/359)        
2020-06-29T20:24:53.1030521Z remote: Compressing objects:  70% (252/359)        
2020-06-29T20:24:53.1031885Z remote: Compressing objects:  71% (255/359)        
2020-06-29T20:24:53.1049065Z remote: Compressing objects:  72% (259/359)        
2020-06-29T20:24:53.1049560Z remote: Compressing objects:  73% (263/359)        
2020-06-29T20:24:53.1050027Z remote: Compressing objects:  74% (266/359)        
2020-06-29T20:24:53.1051860Z remote: Compressing objects:  75% (270/359)        
2020-06-29T20:24:53.1053195Z remote: Compressing objects:  76% (273/359)        
2020-06-29T20:24:53.1054605Z remote: Compressing objects:  77% (277/359)        
2020-06-29T20:24:53.1055795Z remote: Compressing objects:  78% (281/359)        
2020-06-29T20:24:53.1058323Z remote: Compressing objects:  79% (284/359)        
2020-06-29T20:24:53.1058621Z remote: Compressing objects:  80% (288/359)        
2020-06-29T20:24:53.1058880Z remote: Compressing objects:  81% (291/359)        
2020-06-29T20:24:53.1060801Z remote: Compressing objects:  82% (295/359)        
2020-06-29T20:24:53.1061047Z remote: Compressing objects:  83% (298/359)        
2020-06-29T20:24:53.1061186Z remote: Compressing objects:  84% (302/359)        
2020-06-29T20:24:53.1061323Z remote: Compressing objects:  85% (306/359)        
2020-06-29T20:24:53.1061458Z remote: Compressing objects:  86% (309/359)        
2020-06-29T20:24:53.1061594Z remote: Compressing objects:  87% (313/359)        
2020-06-29T20:24:53.1061947Z remote: Compressing objects:  88% (316/359)        
2020-06-29T20:24:53.1062098Z remote: Compressing objects:  89% (320/359)        
2020-06-29T20:24:53.1062215Z remote: Compressing objects:  90% (324/359)        
2020-06-29T20:24:53.1062350Z remote: Compressing objects:  91% (327/359)        
2020-06-29T20:24:53.1062484Z remote: Compressing objects:  92% (331/359)        
2020-06-29T20:24:53.1062622Z remote: Compressing objects:  93% (334/359)        
2020-06-29T20:24:53.1062755Z remote: Compressing objects:  94% (338/359)        
2020-06-29T20:24:53.1062889Z remote: Compressing objects:  95% (342/359)        
2020-06-29T20:24:53.1063022Z remote: Compressing objects:  96% (345/359)        
2020-06-29T20:24:53.1063153Z remote: Compressing objects:  97% (349/359)        
2020-06-29T20:24:53.1063271Z remote: Compressing objects:  98% (352/359)        
2020-06-29T20:24:53.1063404Z remote: Compressing objects:  99% (356/359)        
2020-06-29T20:24:53.1063578Z remote: Compressing objects: 100% (359/359)        
2020-06-29T20:24:53.1063717Z remote: Compressing objects: 100% (359/359), done.        
2020-06-29T20:24:53.1102734Z Receiving objects:   0% (1/420)
2020-06-29T20:24:53.1102899Z Receiving objects:   1% (5/420)
2020-06-29T20:24:53.1103026Z Receiving objects:   2% (9/420)
2020-06-29T20:24:53.1103155Z Receiving objects:   3% (13/420)
2020-06-29T20:24:53.1103281Z Receiving objects:   4% (17/420)
2020-06-29T20:24:53.1103408Z Receiving objects:   5% (21/420)
2020-06-29T20:24:53.1103536Z Receiving objects:   6% (26/420)
2020-06-29T20:24:53.1103663Z Receiving objects:   7% (30/420)
2020-06-29T20:24:53.1105631Z Receiving objects:   8% (34/420)
2020-06-29T20:24:53.1107695Z Receiving objects:   9% (38/420)
2020-06-29T20:24:53.1108561Z Receiving objects:  10% (42/420)
2020-06-29T20:24:53.1108706Z Receiving objects:  11% (47/420)
2020-06-29T20:24:53.1112059Z Receiving objects:  12% (51/420)
2020-06-29T20:24:53.1112193Z Receiving objects:  13% (55/420)
2020-06-29T20:24:53.1112304Z Receiving objects:  14% (59/420)
2020-06-29T20:24:53.1115677Z Receiving objects:  15% (63/420)
2020-06-29T20:24:53.1115835Z Receiving objects:  16% (68/420)
2020-06-29T20:24:53.1115963Z Receiving objects:  17% (72/420)
2020-06-29T20:24:53.1121889Z Receiving objects:  18% (76/420)
2020-06-29T20:24:53.1122034Z Receiving objects:  19% (80/420)
2020-06-29T20:24:53.1122195Z Receiving objects:  20% (84/420)
2020-06-29T20:24:53.1123223Z Receiving objects:  21% (89/420)
2020-06-29T20:24:53.1123395Z Receiving objects:  22% (93/420)
2020-06-29T20:24:53.1124594Z Receiving objects:  23% (97/420)
2020-06-29T20:24:53.1129748Z Receiving objects:  24% (101/420)
2020-06-29T20:24:53.1129896Z Receiving objects:  25% (105/420)
2020-06-29T20:24:53.1131111Z Receiving objects:  26% (110/420)
2020-06-29T20:24:53.1133272Z Receiving objects:  27% (114/420)
2020-06-29T20:24:53.1136360Z Receiving objects:  28% (118/420)
2020-06-29T20:24:53.1136509Z Receiving objects:  29% (122/420)
2020-06-29T20:24:53.1136637Z Receiving objects:  30% (126/420)
2020-06-29T20:24:53.1236803Z Receiving objects:  31% (131/420)
2020-06-29T20:24:53.1396290Z Receiving objects:  32% (135/420)
2020-06-29T20:24:53.1396497Z Receiving objects:  33% (139/420)
2020-06-29T20:24:53.1396631Z Receiving objects:  34% (143/420)
2020-06-29T20:24:53.1396759Z Receiving objects:  35% (147/420)
2020-06-29T20:24:53.1396870Z Receiving objects:  36% (152/420)
2020-06-29T20:24:53.1398881Z Receiving objects:  37% (156/420)
2020-06-29T20:24:53.1402325Z Receiving objects:  38% (160/420)
2020-06-29T20:24:53.1402473Z Receiving objects:  39% (164/420)
2020-06-29T20:24:53.1405775Z Receiving objects:  40% (168/420)
2020-06-29T20:24:53.1405915Z Receiving objects:  41% (173/420)
2020-06-29T20:24:53.1406035Z Receiving objects:  42% (177/420)
2020-06-29T20:24:53.1408092Z Receiving objects:  43% (181/420)
2020-06-29T20:24:53.1410779Z Receiving objects:  44% (185/420)
2020-06-29T20:24:53.1499496Z Receiving objects:  45% (189/420)
2020-06-29T20:24:53.1499657Z Receiving objects:  46% (194/420)
2020-06-29T20:24:53.1499932Z Receiving objects:  47% (198/420)
2020-06-29T20:24:53.1500084Z Receiving objects:  48% (202/420)
2020-06-29T20:24:53.1500211Z Receiving objects:  49% (206/420)
2020-06-29T20:24:53.1552351Z Receiving objects:  50% (210/420)
2020-06-29T20:24:53.1922159Z Receiving objects:  51% (215/420)
2020-06-29T20:24:53.2193080Z Receiving objects:  52% (219/420)
2020-06-29T20:24:53.2910027Z Receiving objects:  53% (223/420)
2020-06-29T20:24:53.3741196Z Receiving objects:  54% (227/420)
2020-06-29T20:24:53.3760273Z Receiving objects:  55% (231/420)
2020-06-29T20:24:53.3774067Z Receiving objects:  56% (236/420)
2020-06-29T20:24:53.3862237Z Receiving objects:  57% (240/420)
2020-06-29T20:24:53.3928812Z Receiving objects:  58% (244/420)
2020-06-29T20:24:53.3929116Z Receiving objects:  59% (248/420)
2020-06-29T20:24:53.3972464Z Receiving objects:  60% (252/420)
2020-06-29T20:24:53.4054977Z Receiving objects:  61% (257/420)
2020-06-29T20:24:53.4145101Z Receiving objects:  62% (261/420)
2020-06-29T20:24:53.4145283Z Receiving objects:  63% (265/420)
2020-06-29T20:24:53.4145418Z Receiving objects:  64% (269/420)
2020-06-29T20:24:53.4150391Z Receiving objects:  65% (273/420)
2020-06-29T20:24:53.4150534Z Receiving objects:  66% (278/420)
2020-06-29T20:24:53.4150664Z Receiving objects:  67% (282/420)
2020-06-29T20:24:53.4154105Z Receiving objects:  68% (286/420)
2020-06-29T20:24:53.4156136Z Receiving objects:  69% (290/420)
2020-06-29T20:24:53.4158790Z Receiving objects:  70% (294/420)
2020-06-29T20:24:53.4161319Z Receiving objects:  71% (299/420)
2020-06-29T20:24:53.4161713Z Receiving objects:  72% (303/420)
2020-06-29T20:24:53.4161871Z Receiving objects:  73% (307/420)
2020-06-29T20:24:53.4164291Z Receiving objects:  74% (311/420)
2020-06-29T20:24:53.4204360Z Receiving objects:  75% (315/420)
2020-06-29T20:24:53.4207508Z Receiving objects:  76% (320/420)
2020-06-29T20:24:53.4209592Z Receiving objects:  77% (324/420)
2020-06-29T20:24:53.4210387Z remote: Total 420 (delta 13), reused 327 (delta 7), pack-reused 0        
2020-06-29T20:24:53.4217466Z Receiving objects:  78% (328/420)
2020-06-29T20:24:53.4222158Z Receiving objects:  79% (332/420)
2020-06-29T20:24:53.4226315Z Receiving objects:  80% (336/420)
2020-06-29T20:24:53.4226711Z Receiving objects:  81% (341/420)
2020-06-29T20:24:53.4226877Z Receiving objects:  82% (345/420)
2020-06-29T20:24:53.4229852Z Receiving objects:  83% (349/420)
2020-06-29T20:24:53.4232227Z Receiving objects:  84% (353/420)
2020-06-29T20:24:53.4236648Z Receiving objects:  85% (357/420)
2020-06-29T20:24:53.4236800Z Receiving objects:  86% (362/420)
2020-06-29T20:24:53.4236929Z Receiving objects:  87% (366/420)
2020-06-29T20:24:53.4237059Z Receiving objects:  88% (370/420)
2020-06-29T20:24:53.4240141Z Receiving objects:  89% (374/420)
2020-06-29T20:24:53.4243326Z Receiving objects:  90% (378/420)
2020-06-29T20:24:53.4243473Z Receiving objects:  91% (383/420)
2020-06-29T20:24:53.4243606Z Receiving objects:  92% (387/420)
2020-06-29T20:24:53.4243734Z Receiving objects:  93% (391/420)
2020-06-29T20:24:53.4245771Z Receiving objects:  94% (395/420)
2020-06-29T20:24:53.4245910Z Receiving objects:  95% (399/420)
2020-06-29T20:24:53.4248057Z Receiving objects:  96% (404/420)
2020-06-29T20:24:53.4248406Z Receiving objects:  97% (408/420)
2020-06-29T20:24:53.4248564Z Receiving objects:  98% (412/420)
2020-06-29T20:24:53.4253523Z Receiving objects:  99% (416/420)
2020-06-29T20:24:53.4253658Z Receiving objects: 100% (420/420)
2020-06-29T20:24:53.4253998Z Receiving objects: 100% (420/420), 7.12 MiB | 22.56 MiB/s, done.
2020-06-29T20:24:53.4259078Z Resolving deltas:   0% (0/13)
2020-06-29T20:24:53.4259302Z Resolving deltas:   7% (1/13)
2020-06-29T20:24:53.4259436Z Resolving deltas:  23% (3/13)
2020-06-29T20:24:53.4259568Z Resolving deltas:  30% (4/13)
2020-06-29T20:24:53.4259966Z Resolving deltas:  38% (5/13)
2020-06-29T20:24:53.4260329Z Resolving deltas:  46% (6/13)
2020-06-29T20:24:53.4260491Z Resolving deltas:  53% (7/13)
2020-06-29T20:24:53.4260602Z Resolving deltas:  61% (8/13)
2020-06-29T20:24:53.4261692Z Resolving deltas:  69% (9/13)
2020-06-29T20:24:53.4263915Z Resolving deltas:  76% (10/13)
2020-06-29T20:24:53.4264204Z Resolving deltas:  84% (11/13)
2020-06-29T20:24:53.4265470Z Resolving deltas:  92% (12/13)
2020-06-29T20:24:53.4268032Z Resolving deltas: 100% (13/13)
2020-06-29T20:24:53.4268184Z Resolving deltas: 100% (13/13), done.
2020-06-29T20:24:53.5441090Z From https://github.com/jmealo/<redacted>
2020-06-29T20:24:53.5442016Z  * [new ref]         37bde7401208afd6868a0c89ed9af420b2a7448d -> pull/3/merge
2020-06-29T20:24:53.5478715Z ##[endgroup]
2020-06-29T20:24:53.5479398Z ##[group]Determining the checkout info
2020-06-29T20:24:53.5482852Z ##[endgroup]
2020-06-29T20:24:53.5483128Z ##[group]Checking out the ref
2020-06-29T20:24:53.5490549Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/3/merge
2020-06-29T20:24:53.6341986Z Note: switching to 'refs/remotes/pull/3/merge'.
2020-06-29T20:24:53.6342398Z 
2020-06-29T20:24:53.6343072Z You are in 'detached HEAD' state. You can look around, make experimental
2020-06-29T20:24:53.6343410Z changes and commit them, and you can discard any commits you make in this
2020-06-29T20:24:53.6343950Z state without impacting any branches by switching back to a branch.
2020-06-29T20:24:53.6344145Z 
2020-06-29T20:24:53.6344396Z If you want to create a new branch to retain commits you create, you may
2020-06-29T20:24:53.6344886Z do so (now or later) by using -c with the switch command. Example:
2020-06-29T20:24:53.6345123Z 
2020-06-29T20:24:53.6345512Z   git switch -c <new-branch-name>
2020-06-29T20:24:53.6345725Z 
2020-06-29T20:24:53.6345969Z Or undo this operation with:
2020-06-29T20:24:53.6346145Z 
2020-06-29T20:24:53.6346519Z   git switch -
2020-06-29T20:24:53.6346726Z 
2020-06-29T20:24:53.6346979Z Turn off this advice by setting config variable advice.detachedHead to false
2020-06-29T20:24:53.6347170Z 
2020-06-29T20:24:53.6347432Z HEAD is now at 37bde74 Merge ca7e7564ac3717fcb3a41ef68616ea53632249c2 into e1798cfc4d5e18199dff07ec5b044e5ae04ebaf2
2020-06-29T20:24:53.6347897Z ##[endgroup]
2020-06-29T20:24:53.6348320Z [command]/usr/bin/git log -1
2020-06-29T20:24:53.6381516Z commit 37bde7401208afd6868a0c89ed9af420b2a7448d
2020-06-29T20:24:53.6381915Z Author: Jeff Mealo <jeffreymealo@gmail.com>
2020-06-29T20:24:53.6382555Z Date:   Mon Jun 29 16:24:20 2020 -0400
2020-06-29T20:24:53.6382780Z 
2020-06-29T20:24:53.6383215Z     Merge ca7e7564ac3717fcb3a41ef68616ea53632249c2 into e1798cfc4d5e18199dff07ec5b044e5ae04ebaf2
2020-06-29T20:24:53.6583949Z ##[group]Run hallee/eslint-action@1.0.3
2020-06-29T20:24:53.6584104Z with:
2020-06-29T20:24:53.6584229Z ##[endgroup]
2020-06-29T20:24:53.6610961Z ##[command]/usr/bin/docker run --name d34c7f831952ea4b068e7ed87921c55ee6_438fc9 --label 3888d3 --workdir /github/workspace --rm -e INPUT_REPO-TOKEN -e INPUT_SOURCE-ROOT -e HOME -e GITHUB_JOB -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_REPOSITORY_OWNER -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_ACTOR -e GITHUB_WORKFLOW -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GITHUB_EVENT_NAME -e GITHUB_SERVER_URL -e GITHUB_API_URL -e GITHUB_GRAPHQL_URL -e GITHUB_WORKSPACE -e GITHUB_ACTION -e GITHUB_EVENT_PATH -e RUNNER_OS -e RUNNER_TOOL_CACHE -e RUNNER_TEMP -e RUNNER_WORKSPACE -e ACTIONS_RUNTIME_URL -e ACTIONS_RUNTIME_TOKEN -e ACTIONS_CACHE_URL -e GITHUB_ACTIONS=true -e CI=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/<redacted>/<redacted>":"/github/workspace" 3888d3:4c7f831952ea4b068e7ed87921c55ee6  "" ""
2020-06-29T20:24:54.3568919Z internal/modules/cjs/loader.js:1032
2020-06-29T20:24:54.3569214Z   throw err;
2020-06-29T20:24:54.3569404Z   ^
2020-06-29T20:24:54.3569495Z 
2020-06-29T20:24:54.3570258Z Error: Cannot find module 'eslint'
2020-06-29T20:24:54.3570540Z Require stack:
2020-06-29T20:24:54.3570874Z - /action/lib/run.js
2020-06-29T20:24:54.3571750Z     at Function.Module._resolveFilename (internal/modules/cjs/loader.js:1029:15)
2020-06-29T20:24:54.3571944Z     at Function.Module._load (internal/modules/cjs/loader.js:898:27)
2020-06-29T20:24:54.3572154Z     at Module.require (internal/modules/cjs/loader.js:1089:19)
2020-06-29T20:24:54.3572319Z     at require (internal/modules/cjs/helpers.js:73:18)
2020-06-29T20:24:54.3572509Z     at Object.<anonymous> (/action/lib/run.js:5:16)
2020-06-29T20:24:54.3572655Z     at Module._compile (internal/modules/cjs/loader.js:1200:30)
2020-06-29T20:24:54.3572809Z     at Object.Module._extensions..js (internal/modules/cjs/loader.js:1220:10)
2020-06-29T20:24:54.3572966Z     at Module.load (internal/modules/cjs/loader.js:1049:32)
2020-06-29T20:24:54.3573118Z     at Function.Module._load (internal/modules/cjs/loader.js:937:14)
2020-06-29T20:24:54.3573274Z     at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12) {
2020-06-29T20:24:54.3573594Z   code: 'MODULE_NOT_FOUND',
2020-06-29T20:24:54.3573880Z   requireStack: [ '/action/lib/run.js' ]
2020-06-29T20:24:54.3574012Z }
2020-06-29T20:24:54.5236359Z Post job cleanup.
2020-06-29T20:24:54.6395160Z [command]/usr/bin/git version
2020-06-29T20:24:54.6460429Z git version 2.27.0
2020-06-29T20:24:54.6496635Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2020-06-29T20:24:54.6545613Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-06-29T20:24:54.6832632Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2020-06-29T20:24:54.6879404Z http.https://github.com/.extraheader
2020-06-29T20:24:54.6880234Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2020-06-29T20:24:54.6918112Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-06-29T20:24:54.7260870Z Cleaning up orphan processes
hallee commented 4 years ago

This Action depends on your project having eslint as a dev dependency. If npm install doesn't install eslint then it won't work.

patcon commented 4 years ago

Quick followup -- if a monorepo doens't have a package.json in its root, will code needed to be added to accomodate this? Also, would you be willing to accept a PR for adding a working-directory key? Thanks! :)

hallee commented 4 years ago

That's a valid case but I think pretty outside the norm. The best solution in that case, in my opinion, would be to set up your dependencies as part of your GitHub Action workflow. As a bonus, GitHub's Node actions are pretty good about caching your dependencies so this should run pretty fast.

- name: Set up Node.js
  uses: actions/setup-node@v1
  with:
    node-version: 12

- name: Install Node.js dependencies
  run: |
    cd {YOUR_WORKING_DIRECTORY}
    npm install

I'm planning to rewrite this Action as a workflow command (#21) so I'm not sure a PR would be worth it

patcon commented 4 years ago

Ok, thanks @hallee! Makes sense :)

jmealo commented 4 years ago

@hallee: Thanks for the suggestions. I already use setup node, run npm install and have eslint as a dependency. I use this at the top of my workflow:

defaults:
  run:
    shell: bash
    working-directory: backend

If your package.json isn't in the root (or if you don't include eslint or run npm install) eslint will not be found in this action.

It might be helpful to add something to the documentation that mono repos aren't supported.

Rukeith commented 4 years ago

@hallee The eslint need to at dependencies or devDependencies? I have eslint at devDependencies but I still got this error

Rukeith commented 4 years ago

@hallee any info?