Skip to content

chore(deps): update all non-major dependencies - autoclosed #487

chore(deps): update all non-major dependencies - autoclosed

chore(deps): update all non-major dependencies - autoclosed #487

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- 'main'
pull_request:
jobs:
Continuous-integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Use Node.js
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: 16
- name: Restore CI Cache
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
id: cache-restore
with:
path: node_modules
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies if Cache Miss
if: ${{ !steps.cache-restore.outputs.cache-hit }}
run: yarn --immutable
- name: Check Liniting
run: yarn lint
- name: Run Tests
if: ${{ github.event_name == 'push' }}
env:
VITE_HYPIXEL_API_KEY: '${{ secrets.HYPIXEL_API_KEY }}'
run: yarn coverage
- name: Build Code
run: yarn build