Skip to content

Commit

Permalink
Adding CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
JodieAddis committed Feb 17, 2024
1 parent 70662d5 commit f6e8c8e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy to Github Pages

on:
pull_request:
branches: -main
push:
branches: - dev

jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: action/checkout@v4

- name: Install Node versions
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"

0 comments on commit f6e8c8e

Please sign in to comment.