Skip to content

Create FUNDING.yml

Create FUNDING.yml #15

Workflow file for this run

name: Node.js CI
on:
pull_request:
push:
branches:
- main
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Check formatting
run: npm run ci
- name: Run tests
run: npm test
- name: Build
run: npm run build