Skip to content

Commit 1e8176f

Browse files
committed
fix: Update GitHub Actions workflow to force install Node.js dependencies and reorder build step
1 parent 5cde56f commit 1e8176f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ jobs:
1515
node-version: '14.x'
1616

1717
- name: Install Node.js dependencies
18-
run: npm install
19-
20-
- name: Build Project
21-
run: npm run build
18+
run: npm install --force
2219

2320
- name: Set up Ruby
2421
uses: ruby/setup-ruby@v1
@@ -28,5 +25,8 @@ jobs:
2825
- name: Install Ruby dependencies
2926
run: bundle install
3027

28+
- name: Build Project
29+
run: npm run build
30+
3131
- name: Run Tests
3232
run: bundle exec rake test

0 commit comments

Comments
 (0)