Update start.js fix to allow old and new versiond of nodejs to be used #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
# A job to generate and publish code coverage | |
lint: | |
name: Run Lint on source | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "14" | |
- run: npm install | |
- run: npm run lint |