Skip to content

feat(dep): bump up unified to 11 #29

feat(dep): bump up unified to 11

feat(dep): bump up unified to 11 #29

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true
- name: Install 🔧
run: npm install
- name: Lint 🧐
run: npm run lint
- name: Test 🚨
run: npm test