chore(deps): bump vite from 5.4.10 to 5.4.14 #277
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] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
- run: npm cit | |
# Minimal test of the GitHub Action | |
# (only runs on pushes to the `main` branch) | |
# Glitch Project: https://glitch.com/edit/#!/github-action | |
sync: | |
if: github.event.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sync to Glitch Project | |
uses: kanadgupta/glitch-sync@main | |
with: | |
auth-token: '${{ secrets.AUTHTOKEN }}' | |
project-id: '${{ secrets.PROJECTID }}' | |
# Testing the `path` parameter | |
# Glitch Project: https://glitch.com/edit/#!/github-action-sandbox | |
# Resulting output: https://github-action-sandbox.glitch.me/ | |
sync-with-path: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Sync using current glitch-sync code | |
uses: ./ | |
with: | |
auth-token: '${{ secrets.SANDBOX_AUTHTOKEN }}' | |
project-id: '${{ secrets.SANDBOX_PROJECTID }}' | |
path: '__tests__/path' # sync `__tests__/path` folder |