Skip to content

build(deps-dev): bump ava from 6.1.0 to 6.1.1 #565

build(deps-dev): bump ava from 6.1.0 to 6.1.1

build(deps-dev): bump ava from 6.1.0 to 6.1.1 #565

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Test
run: npm test
action-only-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Action-only tests
run: npm run test:actionorga
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}