Skip to content

Commit

Permalink
Lint & Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardm27 committed Oct 26, 2024
1 parent cc2733d commit c1941b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: 🎯 Set up Node.js using nvm
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: 🎁 Install dependencies
run: npm ci
- name: 👷🏽‍♂️ Build the site
run: npm run build --if-present
- name: 💾 Store the build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
Expand Down
9 changes: 2 additions & 7 deletions src/views/Mentors.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
<script setup lang="ts">
import { mentors } from '@/data/mentors'
import IconLabel from '@/components/IconLabel.vue'
import Panel from '@/components/Panel.vue'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import PanelContainer from '@/components/PanelContainer.vue'
import { RouterLink, useRoute } from 'vue-router'
import { computed, ref } from 'vue'
import config from '@/config'
import MoreInformationSoon from '@/components/MoreInformationSoon.vue'
const hideMentors = ref(config.hideMentors)
import { useRoute } from 'vue-router'
import { computed } from 'vue'
const route = useRoute()
Expand Down

0 comments on commit c1941b2

Please sign in to comment.