Skip to content

Commit

Permalink
Use core Github workflows and package.json files instead of .npmignore
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed May 29, 2024
1 parent 90e7744 commit 677a1aa
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 91 deletions.
68 changes: 2 additions & 66 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,72 +10,8 @@ on:

jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: ${{ matrix.os }}
name: CI
uses: zen-fs/core/.github/workflows/ci.yaml@main
permissions:
contents: read
id-token: write
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm install

- name: Formatting
run: npm run format:check

- name: Linting
run: npm run lint

- name: Unit tests
run: npm run test

- name: Build
run: npm run build
docs:
needs: ci
runs-on: ubuntu-latest
name: Docs build and deploy
permissions:
contents: write
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm install

- name: Build docs
run: npm run build:docs

- name: Upload docs artifact
uses: actions/upload-pages-artifact@v3
if: github.event_name != 'pull_request'
with:
path: ./docs
- name: 'Deploy docs'
id: deploy
if: github.event_name != 'pull_request'
uses: actions/deploy-pages@v4
29 changes: 5 additions & 24 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,11 @@ on:

jobs:
ci:
uses: ./.github/workflows/ci.yaml
name: CI
uses: zen-fs/core/.github/workflows/ci.yaml@main
permissions:
contents: write
contents: read
id-token: write
pages: write
release:
runs-on: ubuntu-latest
needs: ci
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup npm authenication
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Publish
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
name: Release
uses: zen-fs/core/.github/workflows/release.yaml@main
1 change: 0 additions & 1 deletion .npmignore

This file was deleted.

6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@
".": "./dist/index.js",
"./*": "./dist/*"
},
"files": [
"dist",
"src",
"license.md",
"tsconfig.json"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
Expand Down

0 comments on commit 677a1aa

Please sign in to comment.