Skip to content

[JCN-497-support-array-type-attributes] - add support to array attrib… #9

[JCN-497-support-array-type-attributes] - add support to array attrib…

[JCN-497-support-array-type-attributes] - add support to array attrib… #9

Workflow file for this run

name: Build Status
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node-version}}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Lint code
run: npm run lint
strategy:
matrix:
node-version: [18.x]