Skip to content

fix(deps): update dependency toml-eslint-parser to ^0.7.0 #47

fix(deps): update dependency toml-eslint-parser to ^0.7.0

fix(deps): update dependency toml-eslint-parser to ^0.7.0 #47

Workflow file for this run

name: Node.js CI
on: push
jobs:
Ubuntu:
name: Ubuntu Node.js ${{ matrix.node-version }}
# Containers must run in Linux based operating systems
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
working-directory: core
- run: npm run coverage
working-directory: core
Windows:
name: Windows Node.js ${{ matrix.node-version }}
# Containers must run in Linux based operating systems
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
working-directory: core
- run: npm run coverage
working-directory: core