analytics/.github/workflows/node.yml

26 lines
520 B
YAML
Raw Normal View History

2021-10-11 15:57:01 +03:00
name: NPM CI
on:
push:
branches: [master, stable]
pull_request:
branches: [master, stable]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .tool-versions
uses: marocchino/tool-versions-action@v1
id: versions
- name: Set up Node
2021-10-12 12:12:27 +03:00
uses: actions/setup-node@v2
2021-10-11 15:57:01 +03:00
with:
node-version: ${{steps.versions.outputs.nodejs}}
- run: npm install
- run: npm run lint
- run: npm run check-format