refactor: through2 を使わず node の stream を使うようにした #94
Workflow file for this run
This file contains hidden or 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: test | |
| on: [push, pull_request] | |
| permissions: read-all | |
| jobs: | |
| test: | |
| name: "Test on Node.js ${{ matrix.node-version }}" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [ 20, 22, 24 ] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: setup Ruby | |
| uses: ruby/setup-ruby@13e7a03dc3ac6c3798f4570bfead2aed4d96abfb # v1.244.0 | |
| with: | |
| ruby-version: 2.6 | |
| - uses: reitzig/actions-asciidoctor@c642db5eedd1d729bb8c92034770d0b2f769eda6 # v2.0.2 | |
| - name: Install | |
| run: yarn install && bundle install --path vendor/bundle | |
| - name: Test | |
| run: make test |