Add logger
as a runtime dependency rather than default gem
#602
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JS Build & Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Vite Plugin Ruby | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [18] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8.6.5 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ matrix.node }} | |
- run: pnpm -C vite-plugin-ruby install --frozen-lockfile | |
- name: Build | |
run: pnpm -C vite-plugin-ruby build | |
- name: Test | |
run: pnpm -C vite-plugin-ruby test |