Skip to content

Bump eslint-plugin-import from 2.24.1 to 2.29.1 #65

Bump eslint-plugin-import from 2.24.1 to 2.29.1

Bump eslint-plugin-import from 2.24.1 to 2.29.1 #65

Workflow file for this run

name: Build
on: pull_request
jobs:
typescript_compiler:
name: TypeScript compiler
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.5
- name: Cache dependencies
uses: actions/cache@v4.0.2
with:
path: ./.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Setup Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '16.x'
- name: Install npm dependencies
run: npm ci --prefer-offline --cache=./.npm
- name: Build library
run: npx tsc