diff --git a/.editorconfig b/.editorconfig index c6c8b36..1a3af92 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,9 +1,9 @@ root = true [*] +charset = utf-8 +end_of_line = lf indent_style = space indent_size = 2 -end_of_line = lf -charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index b150513..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Tests and QA checks - -on: - push: ~ - -concurrency: - group: test--${{ github.ref }} - cancel-in-progress: true - -jobs: - tests: - name: Tests - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: lts/hydrogen - - run: npm install-ci-test diff --git a/.github/workflows/tests-and-QA.yml b/.github/workflows/tests-and-QA.yml new file mode 100644 index 0000000..bcb627f --- /dev/null +++ b/.github/workflows/tests-and-QA.yml @@ -0,0 +1,20 @@ +name: tests-and-QA + +on: + push: ~ + +concurrency: + group: tests-and-QA_${{ github.ref }} + cancel-in-progress: true + +jobs: + install-and-test: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: lts/iron + + - run: npm install-ci-test diff --git a/LICENSE b/LICENSE index 7ad1662..9abed2f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Fabien Schurter +Copyright (c) 2023-2024 Fabien Schurter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index 7c9f514..c711080 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fabschurt/microgen", - "author": "Fabien Schurter ", + "author": "Fabien Schurter", "license": "MIT", "type": "module", "main": "src/main.js", @@ -15,7 +15,7 @@ "test": "node --test --test-reporter=spec tests" }, "engines": { - "node": ">=18", + "node": ">=20", "npm": ">=10" }, "dependencies": {