[vite] test example app #507
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: CI | |
on: | |
push: | |
branches-ignore: | |
# Renovate branches are always Pull Requests. | |
# We don't need to run CI twice (push+pull_request) | |
- 'renovate/**' | |
pull_request: | |
paths-ignore: | |
# should sync with ci-check.yml as a workaround to bypass github checks | |
- 'docs/**' | |
- 'examples/**' | |
permissions: {} | |
jobs: | |
# Tests dev-only scripts across all supported dev environments | |
test-dev: | |
# l10nbot does not affect dev scripts. | |
if: ${{ github.actor != 'l10nbot' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- run: echo "${{ github.actor }}" | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
# fetch all tags which are required for `pnpm release:changelog` | |
fetch-depth: 0 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 18 | |
cache: 'pnpm' # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies | |
- run: pnpm install | |
- run: pnpm build:ci | |
- run: pnpm release:changelog | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: pnpm validate-declarations | |
- name: pnpm release:tag | |
run: | | |
git remote -v | |
pnpm release:tag --dryRun | |
- name: Setup upterm session | |
uses: lhotari/action-upterm@v1 | |
with: | |
## limits ssh access and adds the ssh public key for the user which triggered the workflow | |
limit-access-to-actor: true | |
## limits ssh access and adds the ssh public keys of the listed GitHub users | |
limit-access-to-users: brijeshb42 |