Skip to content

Commit

Permalink
add pipeline workflow and some steps
Browse files Browse the repository at this point in the history
  • Loading branch information
devserkan committed Sep 15, 2024
1 parent 1adb4b4 commit 4211bda
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deployment pipeline

on:
push:
branches:
- main

jobs:
simple_deployment_pipeline:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
# - uses: superfly/flyctl-actions/setup-flyctl@master
- name: Install dependencies
run: npm ci
- name: Check style
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test

0 comments on commit 4211bda

Please sign in to comment.