From 6505fdcfecd4dde3391d4e463d69bc08edf0b174 Mon Sep 17 00:00:00 2001 From: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com> Date: Sat, 23 Nov 2024 14:28:29 +0100 Subject: [PATCH] Delete .github/workflows/js_tranform.yml (#1570) --- .github/workflows/js_tranform.yml | 37 ------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/js_tranform.yml diff --git a/.github/workflows/js_tranform.yml b/.github/workflows/js_tranform.yml deleted file mode 100644 index 78cbc815..00000000 --- a/.github/workflows/js_tranform.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Node.js CI - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '18' # Use Node.js version >= 18 - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Run npm audit fix (optional, to fix vulnerabilities) - run: npm audit fix || echo "Some issues require manual fixing." - - - name: Lint and build - run: | - npm run lint # Ensure this script exists in your package.json - npm run build # Ensure this script exists in your package.json - - - name: Run tests - run: npm test