build(deps): remove vue-jest and upgrade @vue/vue3-jest #459
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: GH Pages Deploy | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- "**.md" | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@master | |
with: | |
persist-credentials: false | |
- name: Set up Node.js βοΈ | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Get Yarn cache directory π¦ | |
id: yarn-cache-dir | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache packages π¦ | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-yarn- | |
- name: Install packages π§ | |
run: yarn install --frozen-lockfile | |
- name: Lint π§ | |
run: yarn lint:check | |
- name: Test π¨ | |
run: yarn test:unit | |
- name: Build ποΈ | |
run: yarn build | |
env: | |
NODE_ENV: production | |
- name: Deploy to GH Pages π | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: dist | |
keep_files: true |