diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-07-05 09:57:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 09:57:12 -0700 |
commit | 2f0c290f639f9a80ba824277f4219417ef744732 (patch) | |
tree | 08a63df30465172a0f6f5dc77a0bac132682e2ed /.github/workflows | |
parent | 78d11346716e9162fc0f6025dc4f20f62a558a87 (diff) | |
download | trackermap-web-2f0c290f639f9a80ba824277f4219417ef744732.tar.gz trackermap-web-2f0c290f639f9a80ba824277f4219417ef744732.tar.bz2 trackermap-web-2f0c290f639f9a80ba824277f4219417ef744732.zip |
Add GitHub action
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/node.js.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 00000000..99c00fee --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,17 @@ +name: Node.js CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + - run: npm run lint |