Skip to content

chore(deps): bump actions/upload-pages-artifact from 2 to 3 (#29) #147

chore(deps): bump actions/upload-pages-artifact from 2 to 3 (#29)

chore(deps): bump actions/upload-pages-artifact from 2 to 3 (#29) #147

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Format
run: npx prettier --check .
- name: Test
run: npm run test