Merge pull request #11 from mezgoodle/snyk-upgrade-1f8ad8996e7b12ef86… #85
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: Test action | |
on: [push] | |
jobs: | |
lint_and_test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm ci | |
- name: Lint code | |
run: npm run lint | |
# - name: Test code | |
# run: npm test | |
- name: Upload coverage reports to Codecov | |
if: matrix.node-version == '16.x' | |
uses: codecov/codecov-action@v3 | |
test_workflow: | |
runs-on: ubuntu-latest | |
name: Test workflow locally | |
needs: lint_and_test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run the action | |
uses: ./ | |
with: | |
python: true | |
javascript: true | |
gitHubToken: ${{ secrets.TOKEN }} | |
projectFolder: 'src/' |