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
15 changes: 10 additions & 5 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Setup
description: Setup node, rust, and install dependencies
runs:
using: 'composite'
using: "composite"

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yml files not in prettierignore file

steps:
##############
# Rust / Cargo
Expand All @@ -17,20 +17,25 @@ runs:
debug-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-
debug-${{ runner.os }}-
- name: Install wasm-pack
shell: 'bash'
shell: "bash"
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Install wasm-opt
shell: 'bash'
shell: "bash"
run: cargo install wasm-opt

##############
# Node
##############
# pnpm is used by release-plan (accidentally?)
- uses: pnpm/action-setup@v4

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

with:
version: 10

- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache: "npm"

- name: Install node dependencies
shell: 'bash'
shell: "bash"
run: npm ci
2 changes: 1 addition & 1 deletion .release-plan.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
"pkgJSONPath": "./package.json"
}
},
"description": "## Release (2025-11-25)\n\ncontent-tag 4.1.0 (minor)\n\n#### :rocket: Enhancement\n* `content-tag`\n * [#112](https://github.com/embroider-build/content-tag/pull/112) indentation stripping ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#108](https://github.com/embroider-build/content-tag/pull/108) add utf16 code points range ([@patricklx](https://github.com/patricklx))\n\n#### :memo: Documentation\n* `content-tag`\n * [#111](https://github.com/embroider-build/content-tag/pull/111) Fix return type in readme to include code and map (as the dts already… ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `content-tag`\n * [#107](https://github.com/embroider-build/content-tag/pull/107) Configure prettier ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#104](https://github.com/embroider-build/content-tag/pull/104) Add additional js/runtime tests for how to use character offsets ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 2\n- Patrick Pircher ([@patricklx](https://github.com/patricklx))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
"description": "## Release (2025-11-25)\n\ncontent-tag 4.1.0 (minor) \n\n#### :rocket: Enhancement\n* `content-tag`\n * [#112](https://github.com/embroider-build/content-tag/pull/112) indentation stripping ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#108](https://github.com/embroider-build/content-tag/pull/108) add utf16 code points range ([@patricklx](https://github.com/patricklx))\n\n#### :memo: Documentation\n* `content-tag`\n * [#111](https://github.com/embroider-build/content-tag/pull/111) Fix return type in readme to include code and map (as the dts already… ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `content-tag`\n * [#107](https://github.com/embroider-build/content-tag/pull/107) Configure prettier ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#104](https://github.com/embroider-build/content-tag/pull/104) Add additional js/runtime tests for how to use character offsets ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 2\n- Patrick Pircher ([@patricklx](https://github.com/patricklx))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
}