Skip to content

chore: Update CI actions #1

chore: Update CI actions

chore: Update CI actions #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- '!*'
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE: 20
permissions:
contents: read
jobs:
test:
timeout-minutes: 3
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run test