Add singleValueMapping option (#115) #213
This file contains 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: "Run linting and tests" | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- run: npm ci | |
- run: npm run compile | |
# Test the construct | |
- run: npm run lint-check | |
- run: npm run test | |
- run: npm run test-old-dependencies | |
# Test the provider | |
- run: (cd ./provider && npm run lint-check) | |
- run: (cd ./provider && npm run test) | |
# Lint the example | |
- run: (cd ./example/sops-example && npm ci && npm run lint-check) |