Skip to content

Commit

Permalink
Merge pull request #48 from VaagenIM/develop
Browse files Browse the repository at this point in the history
Resolution for #40, #43 and #45. Proper front-end for assignment pages.
  • Loading branch information
svHvidsten authored Sep 30, 2024
2 parents 277d3cd + d0c00e0 commit a03ae7f
Show file tree
Hide file tree
Showing 19 changed files with 1,032 additions and 169 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Prettier

on: [push, pull_request]
jobs:
prettier:
name: Prettier Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Run Prettier
id: prettier-run
uses: rutajdash/[email protected]
with:
config_path: ./package.json

- name: Prettier Output
if: ${{ failure() }}
shell: bash
run: |
echo "The following files are not formatted:"
echo "${{steps.prettier-run.outputs.prettier_output}}"
10 changes: 10 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Ruff
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
src: './piggy'
Loading

0 comments on commit a03ae7f

Please sign in to comment.