Skip to content

Commit

Permalink
Create basic github workflow for running linting and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
webroo committed Nov 29, 2023
1 parent 9baba93 commit 3a996e6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/production.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Vercel Production Deployment
on:
push:
branches:
- main
jobs:
production_deployment:
name: Production Deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test

0 comments on commit 3a996e6

Please sign in to comment.