Skip to content

Add missing ending_expression_value #76

Add missing ending_expression_value

Add missing ending_expression_value #76

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install npm packages
run: npm install
- name: Run formatter
run: npm run check_format
- name: Run tests
run: npm test