Skip to content

Update archives/v1/index.html #46

Update archives/v1/index.html

Update archives/v1/index.html #46

Workflow file for this run

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: [ 16, 18 ]
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- uses: reitzig/actions-asciidoctor@v2.0.0
- name: Install
run: yarn install && bundle install --path vendor/bundle
- name: Test
run: make test