Skip to content

3.1.1

3.1.1 #197

Workflow file for this run

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)