From 8511eb2d7e9dc9680d179345d466d0c915b3171e Mon Sep 17 00:00:00 2001 From: Fay Carsons Date: Fri, 3 May 2024 13:26:29 -0400 Subject: [PATCH] Praying CI works now --- .github/workflows/shop.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/shop.yml b/.github/workflows/shop.yml index 1683721..9d43e0c 100644 --- a/.github/workflows/shop.yml +++ b/.github/workflows/shop.yml @@ -2,7 +2,7 @@ name: Rust and Elm CI on: push: - branches: [ "main" ] + branches: ["main"] pull_request: env: @@ -12,8 +12,8 @@ jobs: Rust: runs-on: ubuntu-latest - defaults: - run: + defaults: + run: working-directory: backend steps: @@ -26,45 +26,46 @@ jobs: rustup default nightly rustup update - - name: Build - run: | - cargo +nightly build --verbose - - name: Run tests + env: + REMOTE_DATABASE_PATH: ./data.sqlite + STRIPE_SECRET: "" + STRIPE_KEY: "" + COMPLETION_REDIRECT: "" run: | sudo apt-get update && sudo apt-get install -y libsqlite3-dev && cargo install diesel_cli --no-default-features --features sqlite && cargo +nightly test --verbose - Elm: + Elm: runs-on: ubuntu-latest defaults: - run: + run: working-directory: frontend - steps: + steps: - uses: actions/checkout@v3 - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16.17.0' + node-version: "16.17.0" - name: Cache node_modules uses: actions/cache@v3 with: path: node_modules - key: node_modules-${{ hashFiles('package.json', 'package-lock.json') }} + key: node_modules-${{ hashFiles('package.json', 'package-lock.json') }} - name: Cache ~/.elm uses: actions/cache@v3 - with: + with: path: ~/.elm key: elm-${{ hashFiles('elm.json', 'elm-tooling.json') }} - - name: npm ci + - name: npm ci if: steps.cache-node_modules.outputs.cache-hit != 'true' run: npm ci