aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-09-17 23:42:30 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-09-17 23:42:30 +0800
commit8ed88ca8f81633d35b8a16b5e02588dde7f0f1e6 (patch)
tree5acf81464f4949d0b649b0cc715dba42a9183fc1
parent878c3647c1625bfdeb9a5fddde18cd4a52dc1a68 (diff)
downloadSoopyV2-8ed88ca8f81633d35b8a16b5e02588dde7f0f1e6.tar.gz
SoopyV2-8ed88ca8f81633d35b8a16b5e02588dde7f0f1e6.tar.bz2
SoopyV2-8ed88ca8f81633d35b8a16b5e02588dde7f0f1e6.zip
CI
-rw-r--r--.github/workflows/main.yml11
-rw-r--r--CI/supporttest.js0
-rw-r--r--CI/utils/walk.js40
3 files changed, 7 insertions, 44 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c0eb0b3..fd5b46a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -6,9 +6,9 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
- branches: [ master ]
+ branches: [master]
pull_request:
- branches: [ master ]
+ branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@@ -26,5 +26,8 @@ jobs:
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- - name: Checks for compatability with CT 1.3 and 2.0
- run: node ./CI/supporttest.js
+ - name: Import modules
+ run: npm i
+
+ - name: Compile
+ run: babel src -d out --copy-files
diff --git a/CI/supporttest.js b/CI/supporttest.js
deleted file mode 100644
index e69de29..0000000
--- a/CI/supporttest.js
+++ /dev/null
diff --git a/CI/utils/walk.js b/CI/utils/walk.js
deleted file mode 100644
index 899128d..0000000
--- a/CI/utils/walk.js
+++ /dev/null
@@ -1,40 +0,0 @@
-var fs = require('fs');
-var path = require('path');
-var walk = function (dir, done) {
- var results = [];
- fs.readdir(dir, function (err, list) {
- if (err) return done(err);
- var pending = list.length;
- if (!pending) return done(null, results);
- list.forEach(function (file) {
- file = path.resolve(dir, file);
- fs.stat(file, function (err, stat) {
- if (stat && stat.isDirectory()) {
- walk(file, function (err, res) {
- results = results.concat(res);
- if (!--pending) done(null, results);
- });
- } else {
- results.push(file);
- if (!--pending) done(null, results);
- }
- });
- });
- });
-};
-
-async function walkP(dir) { //walk function but promisified
- return new Promise((res, rej) => {
- walk(dir, (err, resu) => {
- if (err) {
- rej(err)
- return
- }
-
- res(resu)
- });
- })
-}
-
-module.exports = { walk, walkP } //https://stackoverflow.com/questions/5827612/node-js-fs-readdir-recursive-directory-search
-//i was just too lazy to code this myself OMEGALUL \ No newline at end of file