bug/issue 1319 expand support for custom resource plugins like in frontmatter imports #205
Workflow file for this run
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: Continuous Integration Windows (Loaders) | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node: [18] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Installing project dependencies | |
run: | | |
yarn install --frozen-lockfile --network-timeout 1000000 && yarn lerna bootstrap | |
- name: Test | |
run: | | |
yarn test:loaders:win |