Skip to content

Commit 4931669

Browse files
Merge pull request #28 from knowledgecode/develop
Modernize package.json and update CI infrastructure
2 parents 5968d9d + 154bad9 commit 4931669

File tree

8 files changed

+1647
-1345
lines changed

8 files changed

+1647
-1345
lines changed

.circleci/config.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master, develop]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
name: Test
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Node.js
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 'lts/*'
22+
cache: 'npm'
23+
24+
- name: Install dependencies
25+
run: npm ci
26+
27+
- name: Build project
28+
run: npm run build
29+
30+
- name: Run unit tests
31+
run: npm run test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.min.js
22
.DS_Store
3+
CLAUDE.md
34
dist
45
node_modules

.npmignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# jquery-param
22

3-
[![Circle CI](https://circleci.com/gh/knowledgecode/jquery-param.svg?style=shield)](https://circleci.com/gh/knowledgecode/jquery-param)
3+
[![CI](https://github.com/knowledgecode/jquery-param/actions/workflows/ci.yml/badge.svg)](https://github.com/knowledgecode/jquery-param/actions/workflows/ci.yml)
4+
[![npm](https://img.shields.io/npm/v/jquery-param)](https://www.npmjs.com/package/jquery-param)
45

56
## Features
67

0 commit comments

Comments
 (0)