Skip to content

fix: correct operator precedence! #18

fix: correct operator precedence!

fix: correct operator precedence! #18

Workflow file for this run

name: Test Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test