Skip to content

Commit

Permalink
Merge branch 'master' of github.com:zerodays/classmate-extension
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkoscak committed Jul 2, 2024
2 parents d0e8119 + dbae96a commit 2c02146
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# PR description :hammer:

Explain (in few sentences or bullet points) what has been done

## Author checklist :white_check_mark:

- [ ] :ticket: PR has been linked to Jira ticket
- [ ] :hourglass: Time has been tracked in Jira
36 changes: 36 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Lint
on:
push:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: true
- name: Lint
run: |
pnpm lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: true
- name: Typecheck
run: |
pnpm tsc
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: true
- name: Run prettier
run: |
pnpm format
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "classmate",
"name": "chrome-extension-template",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
Expand Down

0 comments on commit 2c02146

Please sign in to comment.