Skip to content

chore: new binaries #65

chore: new binaries

chore: new binaries #65

Workflow file for this run

name: Main Workflow
on: [push]
jobs:
build:
name: Build
strategy:
matrix:
node-version: [10, 11, 12, 13, 14, 15, 16, 17, 18]
runs-on: ubuntu-latest
container: node:${{ matrix.node-version }}
steps:
- uses: actions/checkout@v1
- run: |
sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
git config --global --add safe.directory "*"
git submodule update --init --recursive
- run: node --version
- run: npm install
- run: npm install --only=dev
- run: npm run lint
- run: npm test