Skip to content

chore(setup): add args #20

chore(setup): add args

chore(setup): add args #20

Workflow file for this run

on: ["pull_request"]
name: Build and Test PR
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: npm
- name: Install dependencies 📦
run: npm ci
- name: Lint 🧹
run: npm run lint
- name: Build 🔧
run: npm run build
- name: Test 🧪
run: npm run test:ci