Skip to content

Commit

Permalink
CI: first workflow: only lint
Browse files Browse the repository at this point in the history
  • Loading branch information
slivingston committed Dec 4, 2024
1 parent 3efdfb2 commit e820c70
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: rerobots JS tests
on:
push:
pull_request:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-22.04
strategy:
matrix:
node: ['18.18', '20', '22.4']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Installation
run: yarn install --frozen-lockfile
- name: Lint
run: |
yarn format:check
yarn lint

0 comments on commit e820c70

Please sign in to comment.