Bump svelte from 5.16.0 to 5.25.6 #104
Workflow file for this run
This file contains hidden or 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: No Deploy (Test and Build) | |
| on: | |
| # Run on any push to any branch except master | |
| push: | |
| branches-ignore: [master] | |
| # Run on any pull request targeting master | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| testAndBuild: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 8 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Lint | |
| run: pnpm run lint | |
| - name: Run Astro Check | |
| run: pnpm run astro check | |
| - name: Build application | |
| run: pnpm run build |