Skip to content

Commit

Permalink
Merge branch 'v8' into fix/rule-types
Browse files Browse the repository at this point in the history
  • Loading branch information
emilefokkemanavara committed Nov 20, 2024
2 parents 73069f1 + fee2d42 commit e369275
Show file tree
Hide file tree
Showing 8 changed files with 3,498 additions and 66 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,15 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm run lint
- run: npm test
- uses: pnpm/action-setup@v4
with:
version: 9
- run: pnpm install
- run: pnpm install
working-directory: examples
- run: pnpm run build
- run: pnpm run lint
- run: pnpm run test
deploy:
needs: build
runs-on: ubuntu-latest
Expand All @@ -33,8 +38,11 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 18.x
- run: npm install
- run: npm run build --if-present
- uses: pnpm/action-setup@v4
with:
version: 9
- run: pnpm install
- run: pnpm run build
# https://github.com/marketplace/actions/npm-publish
- uses: JS-DevTools/npm-publish@v2
with:
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm run lint
- run: npm test
- uses: pnpm/action-setup@v4
with:
version: 9
- run: pnpm install
- run: pnpm install
working-directory: examples
- run: pnpm run build
- run: pnpm run lint
- run: pnpm run test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ npm-debug.log
.DS_Store
dist
*.tgz
package-lock.json
package-lock.json
53 changes: 0 additions & 53 deletions examples/package-lock.json

This file was deleted.

Loading

0 comments on commit e369275

Please sign in to comment.