Skip to content

Commit

Permalink
Merge branch 'dev' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
daneren2005 committed Apr 10, 2024
2 parents 94a8b14 + 0eeaa4b commit 702e81b
Show file tree
Hide file tree
Showing 3 changed files with 336 additions and 219 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Run Tests

on:
push:
branches: [ '*' ]
pull_request:
branches: [ dev ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run build
Loading

0 comments on commit 702e81b

Please sign in to comment.