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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- uses: pnpm/action-setup@v4

- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "pnpm"

- name: Pnpm install
run: pnpm install

- name: Tests
env:
TESTOPTS: --verbose
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ test/tmp
test/version_tmp
tmp
*.swp
.rubocop-https---raw-githubusercontent-com-discourse-discourse-master--rubocop-yml
.byebug_history
node_modules/
yarn.lock
7 changes: 0 additions & 7 deletions DEV.md

This file was deleted.

2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ end
namespace :jasmine do
desc "Run Jasmine tests in headless mode"
task 'ci' do
if !system("npx jasmine-browser-runner runSpecs")
if !system("pnpm jasmine-browser-runner runSpecs")
exit 1
end
end
Expand Down