Skip to content

Bumped version

Bumped version #107

Workflow file for this run

name: CI
on: [push, pull_request]
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: Build package
run: npm run build -- --filter=svelte-reveal
# - name: Testing
# run: npm run test
# - name: SonarCloud Scan
# uses: sonarsource/sonarcloud-github-action@master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# with:
# projectBaseDir: packages/svelte-reveal