env/.github/workflows/ci.yml

21 lines
377 B
YAML
Raw Normal View History

2020-07-14 06:06:58 -04:00
name: Lint and Test
on: [push]
jobs:
2020-07-14 06:11:40 -04:00
lint_and_test:
2020-07-14 06:06:58 -04:00
runs-on: ubuntu-latest
steps:
2024-01-25 16:04:09 -05:00
- uses: actions/checkout@v4
2020-07-14 06:06:58 -04:00
with:
persist-credentials: false
2024-01-25 16:04:09 -05:00
- uses: actions/setup-node@v4
2020-07-14 06:06:58 -04:00
with:
2024-01-25 16:04:09 -05:00
node-version: 20
2020-07-14 06:06:58 -04:00
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: Test
run: make test