Skip to content

Commit

Permalink
Create ci-cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Matimateokol authored Feb 5, 2024
1 parent d14cdd3 commit e6f61be
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Frontend CI/CD
on: push
jobs:
# Build Job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: yarn install
- name: Build Project
run: yarn build
- name: Upload artifact to enable deployment
uses: actions/upload-artifact@v3
with:
name: production-files
path: ./dist

0 comments on commit e6f61be

Please sign in to comment.