Skip to content

Commit

Permalink
Add basic CI workflow on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr0grog committed Jan 9, 2024
1 parent 5f3764e commit 7eec59a
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 1 deletion.
102 changes: 102 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
name: Continuous Integration

on:
pull_request: {}
# push:
# branches:
# - main
push: {} # Just for now testing on a fork; should ultimately only be on pushes to main.

jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm install

- name: JSHint
run: node_modules/.bin/grunt jshint

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm install

- name: Build
run: node_modules/.bin/grunt concat uglify

node-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [8, 10, 12, 14, 16, 18, 20]

steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: npm

- name: Install dependencies
run: npm install

- name: Unit Tests
run: node_modules/.bin/grunt jasmine_node

browser-tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm install

- name: Unit Tests
run: node_modules/.bin/grunt test

types:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm install

- name: Typescript Tests
run: npm run test-types
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt test && tsc --noEmit ./test/type-test.ts",
"test": "grunt test && npm run test-types",
"test-types": "tsc --noEmit ./test/type-test.ts",
"ci": "grunt ci",
"dist": "grunt dist",
"watch": "grunt watch"
Expand Down

0 comments on commit 7eec59a

Please sign in to comment.