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/create-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 'lts/*' # Always use Node LTS for building dependencies.
- run: yarn
- run: npm install
# Increment the version as desired locally, without actually committing anything.
- name: Locally increment version
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node.version }}
- run: yarn
- run: yarn build
- run: yarn test
- run: npm install
- run: npm run build
- run: npm run test
id: jest-tests
- run: yarn lint
- run: npm run lint
- name: Upload full artifact
if: ${{ always() }}
uses: actions/upload-artifact@v4
Expand All @@ -61,8 +61,8 @@ jobs:
with:
node-version: 'lts/*' # Always use Node LTS for building the tarball
# Install/build dependencies
- run: yarn
- run: yarn build
- run: npm install
- run: npm run build
# Create the tarball
- run: npm pack
# Upload the tarball as an artifact
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
/.nyc_output
/dist
/lib
/package-lock.json
/tmp
node_modules
/out
Expand Down Expand Up @@ -161,4 +160,4 @@ sfge*.log.gz

npm-shrinkwrap.json

.npmrc
.npmrc
Loading