Bump vite from 5.2.8 to 5.2.14 #464
Workflow file for this run
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: pr-workflow | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
# v*.*.* | |
env: | |
NODE_VERSION: 18 | |
# NODE_OPTIONS: --openssl-legacy-provider | |
jobs: | |
vars: | |
runs-on: ubuntu-latest | |
outputs: | |
node_version: ${{ env.NODE_VERSION }} | |
steps: | |
- run: echo "Exposing env vars" | |
sites: | |
needs: vars | |
uses: ./.github/workflows/_deploy-sites.yml | |
with: | |
node_version: ${{ needs.vars.outputs.node_version }} | |
secrets: inherit | |
tests: | |
needs: vars | |
uses: ./.github/workflows/_tests.yml | |
with: | |
node_version: ${{ needs.vars.outputs.node_version }} | |
secrets: inherit | |
docker: | |
needs: vars | |
# We do not need to check out the repository to use the reusable workflow | |
uses: ./.github/workflows/_push-docker.yml | |
with: | |
push: false | |
secrets: inherit | |
electron: | |
needs: vars | |
uses: ./.github/workflows/_publish-electron.yml | |
with: | |
node_version: ${{ needs.vars.outputs.node_version }} | |
publish: false | |
secrets: inherit |