Merge pull request #245 from FlowFuse/feat-enable-images-scan #384
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: Default test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Install Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.5.2 | |
- name: test | |
run: | | |
cd test | |
npm install | |
npm run test |