Skip to content

Commit

Permalink
Simplify project
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Feb 21, 2024
1 parent 13cd099 commit 284d348
Show file tree
Hide file tree
Showing 12 changed files with 789 additions and 545 deletions.
12 changes: 10 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ root = true

[*]
indent_style = tab
indent_size = 2
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
insert_final_newline = true

[*.{yml,yaml}]
indent_size = 2
indent_style = space
tab_width = 2

[*.md]
indent_style = space
22 changes: 9 additions & 13 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,29 @@
name: Format and Update Projects
name: Update Projects

on:
push:
branches:
- main
branches: [main]

jobs:
format-and-update:
update-projects:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: npm

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

- name: Update Projects
run: pnpm run update-list

- name: Format
run: pnpm run format
run: npm run update-list

- name: Add, Commit and Push
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Format and Update Projects"
commit_message: "Update Projects"
18 changes: 0 additions & 18 deletions .prettierrc

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE → license
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Damian Tarnawski
Copyright (c) 2022-2024 Damian Tarnawski

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
Loading

0 comments on commit 284d348

Please sign in to comment.