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