We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5ec156 commit 7514cb4Copy full SHA for 7514cb4
1 file changed
.github/workflows/ci.yml
@@ -59,6 +59,23 @@ jobs:
59
ruby-version: .ruby-version
60
bundler-cache: true
61
62
+ - name: Set up Node.js
63
+ uses: actions/setup-node@v4
64
+ with:
65
+ node-version: '20'
66
+ cache: 'npm'
67
+
68
+ - name: Install Node.js dependencies
69
+ run: npm install
70
71
+ - name: Generate JS routes
72
+ run: bin/rails js:routes
73
74
+ - name: Build frontend assets
75
+ run: bin/rails assets:precompile
76
+ env:
77
+ SECRET_KEY_BASE_DUMMY: 1
78
79
- name: Prepare database
80
run: |
81
bin/rails db:test:prepare
0 commit comments