Skip to content

Commit

Permalink
Run Node-based tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmaroli committed Dec 20, 2024
1 parent 4636ecc commit f08f011
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,23 @@ jobs:
bundler-cache: true
- name: Unit Tests
run: bundle exec rspec

node:
name: "Test Frontend (Node ${{ matrix.node_version }})"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
node_version: ["12"]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: "Set up Node ${{ matrix.node_version }}"
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
cache: "yarn"
- name: Install Dependencies
run: yarn install
- name: Build frontend and run tests
run: bash script/build

0 comments on commit f08f011

Please sign in to comment.