Skip to content

Commit

Permalink
version 0.3.1-next.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amerharb committed Jan 17, 2024
1 parent 60c4d9a commit 97904c9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/publish-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,17 @@ jobs:
always-auth: true
cache: yarn

- run: yarn workspace $PACKAGE_NAME install --immutable
- name: install dependencies
run: yarn workspace $PACKAGE_NAME install --immutable

- name: lint
run: yarn workspace $PACKAGE_NAME run lint

- name: build
run: yarn workspace $PACKAGE_NAME run build

- name: test
run: yarn workspace $PACKAGE_NAME run test

- name: publish abjad-convert @latest to npm
if: ${{ env.PACKAGE_NAME == 'abjad-convert' }}
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/publish-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,17 @@ jobs:
always-auth: true
cache: yarn

- run: yarn workspace $PACKAGE_NAME install --immutable
- name: install dependencies
run: yarn workspace $PACKAGE_NAME install --immutable

- name: lint
run: yarn workspace $PACKAGE_NAME run lint

- name: build
run: yarn workspace $PACKAGE_NAME run build

- name: test
run: yarn workspace $PACKAGE_NAME run test

- name: publish abjad-convert @next to npm
if: ${{ env.PACKAGE_NAME == 'abjad-convert' }}
Expand Down
5 changes: 2 additions & 3 deletions packages/abjad-convert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "abjad-convert",
"version": "0.3.0",
"version": "0.3.1-next.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
Expand Down Expand Up @@ -35,7 +35,6 @@
"make-coverage-badge": "npx make-coverage-badge --report-path coverage/coverage-summary.json --output-path badges/coverage.svg",
"dev": "ts-node src/index.ts",
"lint": "npx eslint . --max-warnings 0",
"lint:fix": "npx eslint . --fix",
"prepublishOnly": "yarn lint && yarn build && yarn test"
"lint:fix": "npx eslint . --fix"
}
}

0 comments on commit 97904c9

Please sign in to comment.