Skip to content

ci double fix

ci double fix #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.14.2
uses: actions/setup-node@v3
with:
node-version: 18.14.2
- name: Setup
run: npm i -g @antfu/ni
- name: Install
run: nci
- name: Lint
run: nr lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.14.2
uses: actions/setup-node@v3
with:
node-version: 18.14.2
- name: Setup
run: npm i -g @antfu/ni
- name: Install
run: nci
- name: Build
run: nr build
# TODO: Add more steps here, like "nr test" as you add the tooling for it