From 4e1ba54a25257bcd6b769771b54e4af9aa520170 Mon Sep 17 00:00:00 2001 From: Arthur Arakelyan Date: Fri, 5 Jan 2024 22:26:46 +0300 Subject: [PATCH] Deleted github workflows wrong folder --- github/workflows/main.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 github/workflows/main.yml diff --git a/github/workflows/main.yml b/github/workflows/main.yml deleted file mode 100644 index 398fd0d..0000000 --- a/github/workflows/main.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: CI -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [ 18.x ] - steps: - - uses: actions/checkout@v3 - - name: Starting Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install node modules - run: yarn install - - name: Run lint checks - run: yarn lint - - name: Run tests - run: yarn test - - name: Build - run: yarn build