Skip to content

Update dependency eslint to v9 #2034

Update dependency eslint to v9

Update dependency eslint to v9 #2034

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
node-version: # Release schedule at https://nodejs.org/en/about/releases
- 18.x
- 20.x
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout easy-git-annex
uses: actions/checkout@v4
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install git-annex
uses: jstritch/setup-git-annex@v1
- name: Install easy-git-annex
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Transpile
run: npm run build
- name: Document
run: npm run typedoc