Skip to content

Debugging workflow

Debugging workflow #1

Workflow file for this run

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