yeslint/.github/workflows/ci.yml

27 lines
487 B
YAML
Raw Normal View History

2024-07-29 16:01:42 +02:00
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
2024-07-29 16:29:47 +02:00
2024-07-29 16:01:42 +02:00
strategy:
2024-07-29 16:29:47 +02:00
fail-fast: false
2024-07-29 16:01:42 +02:00
matrix:
2024-07-29 16:30:33 +02:00
node-version: [16.x, 18.x]
2024-07-29 16:01:42 +02:00
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npx eslint .