Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,23 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Verify build
run: npm run build
run: npm run build:check

Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Fetching node version
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Install dependencies
run: npm ci
- name: Verify lint
run: npm run lint:check
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# create-svelte
# Auth+ Client

Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
This a sample of use of Auth+ services

[![Known Vulnerabilities](https://snyk.io/test/github/auth-plus/auth-plus-client/badge.svg)](https://snyk.io/test/github/auth-plus/auth-plus-client)

[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=auth-plus_auth-plus-client&metric=coverage)](https://sonarcloud.io/summary/new_code?id=auth-plus_auth-plus-client)

## Auth-Plus-Client

Front-end for Auth+ organization
Expand All @@ -14,4 +16,19 @@ npm ci

# Run locally
npm run dev

# Run build
npm rum build

# Check build (CI-compatible, no artifacts)
npm run build:check

# Run test
npm test

# Check lint (CI-compatible, no changes)
npm run lint:check

# Fix lint issues automatically
npm run lint
```
Loading
Loading