Skip to content

fix: action works with ubuntu 24.4 and 22.4 (#28) #99

fix: action works with ubuntu 24.4 and 22.4 (#28)

fix: action works with ubuntu 24.4 and 22.4 (#28) #99

Workflow file for this run

name: Perform checks
on:
push:
branches:
- main
pull_request:
jobs:
main:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@master
- name: NPM install
run: npm install
- name: Check Format
run: npm run format-check
- name: Unit tests
run: npm test