Bump @vue/eslint-config-typescript from 13.0.0 to 14.3.0 #298
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
jobs: | |
ci: | |
name: Run CI Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Setup Node | |
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 | |
with: | |
node-version-file: 'package.json' | |
cache: 'npm' | |
cache-dependency-path: 'package-lock.json' | |
- name: Install Dependencies | |
run: npm install | |
- name: Build Lively Wallpaper | |
run: npm run build:lively | |
- name: Build Web App | |
run: npm run build:web |