diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a039f72..78a6be0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ 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 @@ -16,36 +16,11 @@ jobs: - 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 - lighthouseci: - name: Lighthouse - needs: build - runs-on: ubuntu-latest - steps: - - name: 🚚 Get latest code - uses: actions/checkout@v2 - with: - ref: ${{ github.event.pull_request.head.sha }} - - name: 🚚 Get the build - uses: actions/download-artifact@v2 - with: - name: dist - path: dist - - name: 🎯 Set up Node.js using nvm - uses: actions/setup-node@v2 - with: - node-version-file: '.nvmrc' - - name: 🎁 Install Lighthouse - run: npm install -g @lhci/cli - - name: 🔎 Run Lighthouse - run: lhci autorun - env: - LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} - lintfix: name: Lint, Type check and auto-fix runs-on: ubuntu-latest @@ -55,7 +30,7 @@ jobs: with: fetch-depth: 0 - 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 diff --git a/src/views/Mentors.vue b/src/views/Mentors.vue index c2fd19d0..1ef2e772 100644 --- a/src/views/Mentors.vue +++ b/src/views/Mentors.vue @@ -1,23 +1,15 @@