Skip to content

Commit

Permalink
Add workflow, example fetch and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelreichor committed Oct 13, 2024
1 parent 4fb36c4 commit 156d049
Show file tree
Hide file tree
Showing 6 changed files with 495 additions and 18 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ci

on:
pull_request:
branches:
- '**'

jobs:
lint:
runs-on: ubuntu-latest

test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: npx nypm@latest i

- name: Build Plugin
run: npm run build

- name: Test
run: npm run test
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## v1.1.0
### Added
- Vue playground for better dx
- UseCraftUrlBuilder composable for generating craft cms query urls
- UseApi composable to get plugin options in setup and lifecycle hooks
- Tests for the useCraftUrlBuilder
- Add vue global install function and plugin options for more control
- Install Changelogen, Github Workflows for better scalability

### Changed
- Folder structure
- Add new features to readme
- Add repo and description to package.json
Loading

0 comments on commit 156d049

Please sign in to comment.