Skip to content

Add a special * wildcard language parameter, fixes #29 (#30) #71

Add a special * wildcard language parameter, fixes #29 (#30)

Add a special * wildcard language parameter, fixes #29 (#30) #71

Workflow file for this run

name: build
on: [push, pull_request_target]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x] # https://nodejs.org/en/about/releases/#releases
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm ci
npm run build --if-present
echo '{ "laxcomma": true }' > .jshintrc
npm test
npm run coverage
npm run coveralls
env:
CI: true
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}