From 1fe99e6d28ba02a68525f45c769bdc5e69bf72c5 Mon Sep 17 00:00:00 2001 From: Fredrik Monsen Date: Wed, 17 Apr 2024 13:20:09 +0200 Subject: [PATCH] Create simple workflow with dependency install/cache and linting --- .github/workflows/ci_pipeline.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/ci_pipeline.yml diff --git a/.github/workflows/ci_pipeline.yml b/.github/workflows/ci_pipeline.yml new file mode 100644 index 0000000..a029e14 --- /dev/null +++ b/.github/workflows/ci_pipeline.yml @@ -0,0 +1,31 @@ +name: CI/CD Pipeline + +on: [push] +# push: +# branches: +# - "**" +# tags: +# - "v*.*.*" +# pull_request: +# branches: +# - "main" + +jobs: + lint-and-test: + name: Run linter and tests + runs-on: [self-hosted, Linux] + steps: + - name: Checkout the repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "20.12.7" + cache: "npm" + + - name: Install dependencies + run: npm install + + - name: Linting + run: npm run lint