Debugging workflow #1
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: Debugging | |
on: [push] | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Installing dependencies | |
run: npm ci | |
- name: Building package | |
run: npm run pack -- --filter=svelte-reveal | |
- name: Get Package Version | |
id: package-version | |
uses: martinbeentjes/npm-get-version-action@master | |
with: | |
path: 'packages/svelte-reveal' | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: my-artifact | |
path: ./packages/svelte-reveal/svelte-reveal-*.tgz |