Skip to content

ci(actions): update #25

ci(actions): update

ci(actions): update #25

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@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Set up Ruby 3.2.0
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Install 🔧
run: npm install
- name: Build 🏗️
run: npm run build
- name: Lint 🧐
run: npm run lint
- name: Test 🚨
run: npm test