Skip to content

V5

V5 #5

Workflow file for this run

name: ci
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- name: Install dependencies
run: npm i
- name: Linting
run: npm run lint
- name: Testing
run: npm run test:ci
- name: Build
run: npm run build