Skip to content

Commit

Permalink
updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
treezy254 committed Jul 29, 2024
1 parent 09398a2 commit fadb499
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflow/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Daily Timebox App CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

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

- name: Install Dependencies
run: npm install

- name: Run Linter
run: npm run lint

- name: Run Tests
run: npm test

- name: Build Project
run: npm run build

0 comments on commit fadb499

Please sign in to comment.