This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
fix(deps): update dependency vue to v3.5.1 #879
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: | |
- '**' | |
tags: ['v*.*.*'] | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- name: Install dependencies 📦 | |
run: yarn install --immutable | |
- name: Run build | |
run: yarn run build | |
docker: | |
uses: reims2/actions/.github/workflows/docker.yml@main | |
concurrency: docker-${{ github.ref }} | |
if: ${{ github.event_name != 'merge_group' }} | |
secrets: inherit # pass all secrets | |
deploy: | |
needs: | |
- docker | |
if: github.ref == 'refs/heads/main' | |
uses: reims2/actions/.github/workflows/deploy.yml@main | |
concurrency: deploy-${{ github.repository }} | |
secrets: inherit # pass all secrets | |
dev-deploy: | |
needs: | |
- docker | |
if: github.event_name == 'workflow_dispatch' | |
uses: reims2/actions/.github/workflows/dev-deploy.yml@main | |
concurrency: dev-deploy-${{ github.repository }} | |
secrets: inherit # pass all secrets |