Skip to content

Bump braces from 3.0.2 to 3.0.3 #40

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #40

Workflow file for this run

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