Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kinoppyd committed Mar 21, 2024
1 parent 46cff2d commit 49017e7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/rspec.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,25 @@ jobs:

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v3
with:
node-version: 16.19.1
node-version: 20.11.1

- uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- uses: nanasess/setup-chromedriver@v2

- name: Create database
run: bin/rails db:setup

- name: yarn
run: yarn install
- name: Build frontend
run: yarn build

- name: Run tests
run: bin/rails test

- name: Run system tests
run: bin/rails test:system

0 comments on commit 49017e7

Please sign in to comment.