bump version to 1.10.0 #37
Workflow file for this run
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: WWW | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set the NODE_VERSION env variable from NVM | |
run: echo NODE_VERSION=$(cat www/.nvmrc) >> $GITHUB_ENV | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "${{ env.NODE_VERSION }}" | |
- name: Install dependencies | |
run: cd www && npm install | |
- name: Lint | |
run: cd www && npm run lint |