Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #13 from shampiniony/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
mikedegeofroy authored Sep 5, 2024
2 parents e48dc29 + 2b1ff9b commit 2c9e0c2
Show file tree
Hide file tree
Showing 7 changed files with 1,970 additions and 384 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/ci-tests-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ on:
branches: [ "main", "dev" ]

jobs:

build:

runs-on: ubuntu-22.04

steps:
- name: Set short git commit SHA
run: |
echo "CI test complited"
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'

- name: Install dependencies
run: npm install

# - uses: actions/checkout@v4
# - name: Build docker image
# run: docker-compose -f docker-compose.yaml build
- name: Run lint
run: npm run lint
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.env
.vscode
node_modules
.DS_Store
18 changes: 18 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import globals from "globals";
import pluginJs from "@eslint/js";

export default [
{
files: ["**/*.js"],
languageOptions: {
sourceType: "commonjs",
globals: globals.node,
},
plugins: {
js: pluginJs,
},
rules: {
"no-unused-vars": "warn",
},
},
];
Loading

0 comments on commit 2c9e0c2

Please sign in to comment.