Remove README.md docs on depcrecated options param #55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "22" | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint | |
- name: Run Tests | |
run: npm test | |
- name: Build Package | |
run: npm run build |