Skip to content

Commit 206cb78

Browse files
committed
Added GitHub actions CI test
1 parent fe4db35 commit 206cb78

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/build.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
on: ["push", "pull_request"]
2+
3+
name: Build
4+
jobs:
5+
build:
6+
name: Build
7+
runs-on: ubuntu-latest
8+
steps:
9+
10+
- uses: actions/checkout@v3
11+
12+
- name: Setup Node.js
13+
uses: actions/setup-node@v2
14+
with:
15+
node-version: 17.x
16+
17+
- name: Test CoffeeScript Loader
18+
working-directory: coffeescript-loader
19+
run: |
20+
npm install
21+
npm test
22+
23+
- name: Test CommonJS Extension Resolution Loader
24+
working-directory: commonjs-extension-resolution-loader
25+
run: |
26+
npm install
27+
npm test
28+
29+
- name: Test HTTPS Loader
30+
working-directory: https-loader
31+
run: |
32+
npm install
33+
npm test
34+
35+
- name: Test PGP Loader
36+
working-directory: pgp-loader
37+
run: |
38+
npm install
39+
npm test

0 commit comments

Comments
 (0)