From a5438c340ae5a1930b5856bb5fd4959c0aaad3f5 Mon Sep 17 00:00:00 2001 From: midudev Date: Sun, 8 Aug 2021 20:35:04 +0200 Subject: [PATCH] Add new pipeline workflow --- .github/workflows/pipeline.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pipeline.yml diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml new file mode 100644 index 0000000..7a0ed4c --- /dev/null +++ b/.github/workflows/pipeline.yml @@ -0,0 +1,21 @@ +name: Deployment Pipeline + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: actions/setup-node@v2 + with: + node-version: '14' + - name: Install dependencies + run: npm install + - name: Lint + run: npm run eslint \ No newline at end of file