Skip to content

Commit 6787839

Browse files
committed
github actions for CI
1 parent dd8222b commit 6787839

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

.github/workflows/ci.yaml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: ci
2+
on:
3+
- push
4+
jobs:
5+
test:
6+
runs-on: ${{ matrix.os }}
7+
continue-on-error: true
8+
strategy:
9+
matrix:
10+
os:
11+
- ubuntu-latest
12+
- macos-latest
13+
- windows-latest
14+
node:
15+
- '12.x'
16+
- '14.x'
17+
- 'lts/*'
18+
band:
19+
- 'webpack4'
20+
- 'webpack5'
21+
steps:
22+
- name: Use OS ${{ matrix.os }}
23+
uses: actions/checkout@v2
24+
- name: Use Node@${{ matrix.node }}
25+
uses: actions/setup-node@v2
26+
with:
27+
node-version: ${{ matrix.node }}
28+
cache: 'yarn'
29+
- name: Install Dependencies
30+
run: yarn install
31+
- name: Unit test
32+
run: yarn test:unit
33+
- name: End-to-End test ${{ matrix.band }}
34+
if: ${{ !(matrix.node == 'lts/*' && matrix.band == 'webpack4') }}
35+
run: yarn test:e2e
36+
env:
37+
ONLY: '${{ matrix.band }}*'

packages/resolve-url-loader/test/webpack4-sassloader8-nodesass4/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "webpack4-sassloader8-nodesass4",
33
"version": "1.0.0",
44
"engines": {
5-
"node": ">=12.0.0"
5+
"node": ">=12.0.0 <16.0.0"
66
},
77
"dependencies": {
88
"css-loader": "^5.2.4",

test/index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const {dirname, normalize, join} = require('path');
44
const {readdirSync} = require('fs');
5-
const {platform: os} = require('process');
5+
const {platform: os, version} = require('process');
66
const compose = require('compose-function');
77
const sequence = require('promise-compose');
88
const micromatch = require('micromatch');
@@ -16,6 +16,7 @@ const {testBase} = require('./cases/common/test');
1616
// tests are located in resolve-url-loader package which might differ from package under test
1717
const PLATFORMS_DIR = compose(normalize, join)(__dirname, '..', 'packages', 'resolve-url-loader', 'test');
1818
const CASES_DIR = join(__dirname, 'cases');
19+
const VERSION_MAJOR = version.match(/\d+/).shift();
1920

2021
const testIncluded = process.env.ONLY ?
2122
(arr) => {
@@ -69,7 +70,7 @@ filterTests()
6970
platform,
7071
sequence(
7172
init({
72-
directory: [process.cwd(), join('tmp', '.cache'), platform],
73+
directory: [process.cwd(), join('tmp', '.cache'), `node${VERSION_MAJOR}-${platform}`],
7374
ttl: false,
7475
debug: (process.env.DEBUG === 'true'),
7576
env: {
@@ -131,7 +132,7 @@ filterTests()
131132
RESOLVE_URL_LOADER_TEST_HARNESS: 'stderr'
132133
}),
133134
meta({
134-
cacheDir: join(process.cwd(), 'tmp', '.cache', platform),
135+
cacheDir: join(process.cwd(), join('tmp', '.cache'), `node${VERSION_MAJOR}-${platform}`),
135136
version: getVersionHash(platform)
136137
}),
137138
...filterTests(platform).map(caseName => require(join(CASES_DIR, caseName)))

0 commit comments

Comments
 (0)