We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe4db35 commit 206cb78Copy full SHA for 206cb78
.github/workflows/build.yml
@@ -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
26
27
28
29
+ - name: Test HTTPS Loader
30
+ working-directory: https-loader
31
32
33
34
35
+ - name: Test PGP Loader
36
+ working-directory: pgp-loader
37
38
39
0 commit comments