From c07efcf0c83f5fd96b9afda32013b3a1314d4919 Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Sat, 7 Oct 2023 22:32:08 +0200 Subject: [PATCH] Delete .github/workflows/node.js.yml --- .github/workflows/node.js.yml | 46 ----------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml deleted file mode 100644 index fcb3bc0..0000000 --- a/.github/workflows/node.js.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Ember Application Build - -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Node.js and Ember CLI - uses: actions/setup-node@v2 - with: - node-version: '14' - - run: npm install -g ember-cli@2.18.2 - - - name: Install npm and bower dependencies - run: | - cd www # Replace with the actual repository directory where your Ember app is located - npm install - npx bower install --allow-root - - - name: Install ESLint and create configuration - run: | - cd www # Replace with the actual repository directory where your Ember app is located - npm install eslint --save-dev - npx eslint --init - - - name: Install ember-truth-helpers and jdenticon - run: | - cd www # Replace with the actual repository directory where your Ember app is located - npm install ember-truth-helpers - npm install jdenticon@2.1.0 - - - name: Build Ember application - run: | - cd www # Replace with the actual repository directory where your Ember app is located - ember build - - - name: Display build completion message - run: echo "Ember application build completed successfully."