Skip to content

Commit

Permalink
Merge pull request #2 from GovAlta/setup_ci
Browse files Browse the repository at this point in the history
Setup Automated Testing
  • Loading branch information
ArakTaiRoth authored Sep 30, 2024
2 parents 5ed7ea4 + dd6e4e8 commit 92a09c7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/ci.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test Runner

on:
pull_request:
branches:
- master
- dev
push:
branches:
- master
- dev
workflow_dispatch:

jobs:
main:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- name: Build
run: npm run build
- name: Test
- run: npm run test

0 comments on commit 92a09c7

Please sign in to comment.