Skip to content

Updates to use the latest versions of sparqljs and n3. #38

Updates to use the latest versions of sparqljs and n3.

Updates to use the latest versions of sparqljs and n3. #38

Workflow file for this run

name: ✨ TSlint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ubuntu_build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
id: cache
with:
path: node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-${{ hashFiles('yarn.lock') }}
- name: Install package
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- name: Lint package
run: yarn lint