Skip to content

Commit

Permalink
Added frontend CI and updated several deps (#138)
Browse files Browse the repository at this point in the history
* Added frontend CI and updated Prettier

* Building again

* Update index.js
  • Loading branch information
jwngr committed Jun 15, 2024
1 parent 6c874a8 commit aec621b
Show file tree
Hide file tree
Showing 39 changed files with 7,149 additions and 7,343 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: frontend-ci
on: [push]
jobs:
frontend-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install
working-directory: website
- name: Lint
run: npm run lint
working-directory: website
3 changes: 2 additions & 1 deletion website/.prettierrc → .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
"trailingComma": "es5",
"plugins": ["@ianvs/prettier-plugin-sort-imports"]
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Jacob Wenger
Copyright (c) 2024 Jacob Wenger

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 aec621b

Please sign in to comment.