Skip to content

Commit

Permalink
Merge branch 'master' into style-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed May 8, 2024
2 parents 4180405 + d17cd0e commit a753e68
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 118 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Generate Check

on:
pull_request:
branches:
- master

jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Run Generate
run: yarn generate
24 changes: 24 additions & 0 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Prettier Check

on:
pull_request:
branches:
- master

jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Run Prettier
run: yarn prettier --check .
116 changes: 0 additions & 116 deletions components/Index/UseCases.vue

This file was deleted.

2 changes: 0 additions & 2 deletions components/PublishonxTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ watch(accountStore, updateLinks);
onMounted(updateLinks);
</script>
<style scoped>
.text-sm.text-green-700 {
word-wrap: break-word;
overflow-wrap: break-word;
Expand Down

0 comments on commit a753e68

Please sign in to comment.