json-theme-even-fork/.github/workflows/main.yml
Rafael Bardini de801d2027 feat(esm): migrate to ESM
- Build with microbundle
- Add build step to GitHub Actions workflow
2021-11-05 18:48:45 +01:00

31 lines
516 B
YAML

name: Main
on: push
jobs:
test-and-release:
name: Test and build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Coverage
uses: codecov/codecov-action@v1