Commit a66976b3 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix(ci): Use local path to acorn to avoid conflict with npm dependencies

parent 7e0a9cb2
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@ default:
    - apt-get install -y curl
    - curl -LO https://code.ornl.gov/api/v4/projects/16689/packages/generic/x86_64-unknown-linux-gnu/v${ACORN_VERSION}/acorn
    - chmod +x ./acorn
    - mv ./acorn /usr/local/bin
    - curl -LO https://github.com/errata-ai/vale/releases/download/v${VALE_VERSION}/vale_${VALE_VERSION}_Linux_64-bit.tar.gz
    - tar -xvzf vale_${VALE_VERSION}_Linux_64-bit.tar.gz -C /usr/local/bin
    - acorn --version
+4 −4
Original line number Diff line number Diff line
@@ -7,18 +7,18 @@
    "dev": "astro dev --host --open",
    "dev:mac": "astro dev --host",
    "predownload": "npm run clean",
    "download": "acorn download --buckets buckets.json --output src/data",
    "download": "./acorn download --buckets buckets.json --output src/data",
    "postdownload": "npm run format",
    "start": "astro dev",
    "build:projects": "acorn export src/data/project --output public/pdf",
    "build:projects": "./acorn export src/data/project --output public/pdf",
    "build:pdf": "run-s build:projects build:organizations",
    "build:src": "astro build",
    "build": "run-s build:pdf build:src",
    "preview": "astro preview",
    "astro": "astro",
    "format": "acorn format src/data --ignore highlight -vv",
    "format": "./acorn format src/data --ignore highlight -vv",
    "lint:code": "eslint --fix --config ./eslint.config.js",
    "lint:data": "acorn check src/data",
    "lint:data": "./acorn check src/data",
    "lint": "run-p lint:*"
  },
  "dependencies": {