Skip to content

Commit

Permalink
Remove unneeded files and run tests (#2)
Browse files Browse the repository at this point in the history
* Readd test

* Add test workflow

* remove assert
  • Loading branch information
adamnolte authored Oct 31, 2023
1 parent 1bfc07b commit 09f358e
Show file tree
Hide file tree
Showing 11 changed files with 2,987 additions and 18,068 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Feature Branch Tests

on: push

permissions:
contents: read

# Cancel in progress runs of this workflow when we push changes to the branch
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm run test
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

12 changes: 0 additions & 12 deletions Makefile

This file was deleted.

20 changes: 0 additions & 20 deletions gulpfile.js

This file was deleted.

Loading

0 comments on commit 09f358e

Please sign in to comment.