diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index f54c09db..a3027597 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -14,6 +14,7 @@ jobs: strategy: matrix: ruby: ['3.2'] + node: ['18'] steps: - name: Checkout code uses: actions/checkout@v3 @@ -22,6 +23,11 @@ jobs: with: bundler-cache: true ruby-version: ${{ matrix.ruby }} + - name: Install NodeJS + uses: actions/setup-node@v3 + with: + cache: 'yarn' + node-version: ${{ matrix.node }} - name: Install JS dependencies run: yarn install --frozen-lockfile - name: Set up the database