Skip to content

fix: upgrade @actions/http-client from 2.2.2 to 2.2.3 #87

fix: upgrade @actions/http-client from 2.2.2 to 2.2.3

fix: upgrade @actions/http-client from 2.2.2 to 2.2.3 #87

Workflow file for this run

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/'