Skip to content

Bump @babel/traverse from 7.21.5 to 7.23.2 #70

Bump @babel/traverse from 7.21.5 to 7.23.2

Bump @babel/traverse from 7.21.5 to 7.23.2 #70

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