mirror of
https://github.com/FranzDiebold/github-env-vars-action.git
synced 2024-11-06 09:15:56 -05:00
20 lines
379 B
YAML
20 lines
379 B
YAML
name: Lint and Test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
lint_and_test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12'
|
|
- name: Install dependencies
|
|
run: make install
|
|
- name: Lint
|
|
run: make lint
|
|
- name: Test
|
|
run: make test
|