diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml new file mode 100644 index 0000000..b54d11e --- /dev/null +++ b/.github/workflows/example.yml @@ -0,0 +1,55 @@ +name: Example + +on: + push: + branches: + - main + +permissions: + contents: read + id-token: write + pages: write + +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + if: github.repository == 'kodingdotninja/use-tailwind-breakpoint' + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + + - name: setup pnpm + uses: pnpm/action-setup@v2 + with: + run_install: false + + - name: setup node.js + uses: actions/setup-node@v4 + with: + cache: pnpm + node-version-file: .nvmrc + + - name: install dependencies + run: pnpm install --frozen-lockfile + + - name: build + run: pnpm -F example run build + + - name: setup pages + uses: actions/configure-pages@v4 + + - name: upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: "./example/dist/" + + - name: deploy to github pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/example/src/breakpoints.ts b/example/src/breakpoints.ts index ebb3c9c..2f79427 100644 --- a/example/src/breakpoints.ts +++ b/example/src/breakpoints.ts @@ -1,4 +1,4 @@ -import { create } from "use-tailwind-breakpoint"; +import { create } from "@kodingdotninja/use-tailwind-breakpoint"; export const breakpoints = { sm: "640px",