From f902a39f2a3469e79816f5fa0a4c7feb9cbd32bf Mon Sep 17 00:00:00 2001 From: Juergen Arndt Date: Fri, 4 Oct 2024 16:30:01 +0200 Subject: [PATCH] versuch --- .github/workflows/deploy.yml | 19 +++++++++++++++++++ .gitignore | 1 + 2 files changed, 20 insertions(+) create mode 100644 .github/workflows/deploy.yml create mode 100644 .gitignore diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..4e8cfdb --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,19 @@ +name: Test and Deploy +on: + - push + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Get code + uses: actions/checkout@v3 + - name: Install nodeJS + uses: actions/setup-node@v3 + with: + node-version: 20 + - name: Install Dependencies + run: npm ci + - name: Run linter + run: npm lint + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp