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
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup
run: |
npm install
npm run setup-examples
npm run build
- name: Run Coverage
run: npm run coverage
- name: Publish Coveralls
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: |
npm i
npm run build
- run: npm run lint
- name: Lint Website
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'

- run: npm ci
- run: |
npm ci
npm run build

- name: Publish to NPM
env:
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/test-terminate.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: node -v
- run: npm install
- run: npm run build
- run: npm run test

test-browser-versions: # make sure build/ci work properly
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,12 @@ jobs:
- name: Update Root
run: |
npm i
npx npm-check-updates -t semver -u
npx npm-check-updates --workspaces --root -t semver -u
rm -rf node_modules package-lock.json

- name: Install
run: npm install

- name: Update Website
run: |
cd website
npm i
npx npm-check-updates -t semver -u
rm -rf node_modules package-lock.json
npm install

- name: PR Body
id: body
uses: streetsidesoftware/actions/public/pr-body@v1
Expand Down
File renamed without changes.
45 changes: 0 additions & 45 deletions examples/package-lock.json

This file was deleted.

3 changes: 2 additions & 1 deletion examples/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "@internal/examples",
"version": "1.0.0",
"private": true,
"description": "Example Code",
"type": "module",
"scripts": {
"test": "echo test"
},
"license": "MIT",
"dependencies": {
"regexp-worker": ".."
"regexp-worker": "file:../"
}
}
Loading