Skip to content

Commit

Permalink
refactor: Update project configuration (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabschurt authored Apr 4, 2024
1 parent cd5b750 commit b74da75
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -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
19 changes: 0 additions & 19 deletions .github/workflows/ci.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/tests-and-QA.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fabschurt/microgen",
"author": "Fabien Schurter <[email protected]>",
"author": "Fabien Schurter",
"license": "MIT",
"type": "module",
"main": "src/main.js",
Expand All @@ -15,7 +15,7 @@
"test": "node --test --test-reporter=spec tests"
},
"engines": {
"node": ">=18",
"node": ">=20",
"npm": ">=10"
},
"dependencies": {
Expand Down

0 comments on commit b74da75

Please sign in to comment.