Skip to content

Workflow update

Workflow update #4

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
- run: pwd
- run: ls -l
- run: cd packages/svelte-reveal
- run: ls -l
- name: Building package
run: npm pack
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: svelte-reveal-*.tgz