Browse Source

Delete .github/workflows/ci.yml

master
yuriy0803 2 years ago committed by GitHub
parent
commit
11f629e330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 41
      .github/workflows/ci.yml

41
.github/workflows/ci.yml

@ -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
Loading…
Cancel
Save