Skip to content

Commit

Permalink
chore: Add GitHub Workflow for CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
seanpoulter committed Mar 4, 2024
1 parent 677a82b commit 6c985e3
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 82 deletions.
47 changes: 0 additions & 47 deletions .codeclimate.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: CI

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14']
steps:
- uses: actions/checkout@v4
- name: Use Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Run Tests
run: |
npm test
npm run test:app
npm run test:selenium
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

0 comments on commit 6c985e3

Please sign in to comment.