Skip to content

Remove commends

Remove commends #100

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node 18
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node 18
uses: actions/setup-node@v3
with:
node-version: 18.16.0
cache: 'yarn'
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
with:
install-command: yarn install
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build