Skip to content

Commit

Permalink
Add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
zntb committed Oct 7, 2024
1 parent 90689d2 commit cb25019
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 138 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deployment pipeline

on:
push:
branches:
- main
pull_request:
branches: [main]
types: [opened, synchronize]

jobs:
simple_deployment_pipeline:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Run linter
run: npm run lint
22 changes: 0 additions & 22 deletions frontend/.eslintrc.cjs

This file was deleted.

Loading

0 comments on commit cb25019

Please sign in to comment.