Skip to content

式の解析にpratt parsingを導入する #672

式の解析にpratt parsingを導入する

式の解析にpratt parsingを導入する #672

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
env:
CI: true