From 11f629e330cb872c7118fd87bd1457430186bdde Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Tue, 24 Oct 2023 19:04:51 +0200 Subject: [PATCH] Delete .github/workflows/ci.yml --- .github/workflows/ci.yml | 41 ---------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index a73aeb6..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: CI - -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - build-and-test: - runs-on: ubuntu-latest - - steps: - - name: Checkout ๐Ÿ›Ž - uses: actions/checkout@v2 - with: - repository: yuriy0803/open-etc-pool-friends - ref: master - path: 'new-web' # Hier wird das Verzeichnis spezifiziert - - - name: Setup Node.js and Yarn ๐Ÿ— - uses: actions/setup-node@v2 - with: - node-version: 16 - - - name: Change to new-web directory ๐Ÿ“‚ - run: cd new-web - - - name: Install Dependencies ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป - run: yarn install - - - name: Lint and Fix โœจ - run: yarn lint-fix - - - name: Build ๐Ÿ— - run: yarn build - - - name: Test ๐Ÿงช - run: yarn test