Skip to content

Commit

Permalink
Merge pull request #121 from nschonni/add-back-ci
Browse files Browse the repository at this point in the history
ci: Add back CI testing
  • Loading branch information
mpnkhan committed Nov 2, 2022
2 parents 16b5406 + 4b2e5ed commit 3520cec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches-ignore:
- main
pull_request:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- run: npm install -g grunt-cli
- run: npm install
- run: grunt

0 comments on commit 3520cec

Please sign in to comment.