Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Jan 12, 2024
1 parent 3dc85c8 commit 3fcab5e
Show file tree
Hide file tree
Showing 10 changed files with 55 additions and 81 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: coretime-utils CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

# Setup Node.js environment
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # You can specify your Node.js version here

# Install dependencies
- name: Install dependencies
run: npm install

# Run linter
- name: Run Linter
run: npm run lint

# Check Prettier
- name: Check Prettier
run: npm run prettier-check

# Run tests
- name: Run Tests
run: npm test
15 changes: 15 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Coretime-utils
Copyright (C) 2024 Master Union

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# coretime-utils
37 changes: 0 additions & 37 deletions __tests__/instruction.ts

This file was deleted.

1 change: 0 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "fission-parser",
"name": "coretime-utils",
"version": "1.0.0",
"description": "",
"main": "index.js",
Expand Down
8 changes: 0 additions & 8 deletions src/common.ts

This file was deleted.

29 changes: 0 additions & 29 deletions src/instruction.ts

This file was deleted.

3 changes: 0 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
class CoreShare {

}

0 comments on commit 3fcab5e

Please sign in to comment.