Skip to content

Merge pull request #12 from tetherto/main #3

Merge pull request #12 from tetherto/main

Merge pull request #12 from tetherto/main #3

Workflow file for this run

name: build
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node 22.19.0
uses: actions/setup-node@v4
with:
node-version: "22.19.0"
cache: "npm"
- name: Install dependencies
run: npm clean-install
- name: Lint code with standard
run: npm run lint
- name: Run tests
run: npm test