Skip to content

Add entry URLs

Add entry URLs #67

name: Lint and build
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18', '20']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn lint
- run: yarn style:check
- run: yarn build