Skip to content

chore: move to ESM #654

chore: move to ESM

chore: move to ESM #654

name: Continuous Integration
on: push
jobs:
build:
name: Build app
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install packages
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run bundle