Skip to content

v100.1.0

v100.1.0 #2

name: Pull Request Test and Lint
on:
pull_request:
branches:
- main
jobs:
test_and_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: 'npm'
- name: Install dependencies
run: npm ci
- run: npm run lint
- run: npm run test