Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Don't delete dest files if they are found in destPathsToIgnore #182

Don't delete dest files if they are found in destPathsToIgnore

Don't delete dest files if they are found in destPathsToIgnore #182

name: Integration Test
on:
- pull_request
- push
jobs:
integration-test-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Integration Test
run: yarn test:integration
integration-test-windows:
runs-on: windows-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Integration Test
run: yarn test:integration
integration-test-macos:
runs-on: macos-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Integration Test
run: yarn test:integration