45 lines
851 B
YAML
45 lines
851 B
YAML
name: Solidity flattener CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14, 16, 18]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: Install, test
|
|
run: |
|
|
npm install
|
|
npm test
|
|
env:
|
|
CI: true
|
|
|
|
checkCodestyle:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18.x'
|
|
- name: Install and check codestyle
|
|
run: |
|
|
npm install
|
|
npm run lint
|
|
env:
|
|
CI: true |