-
-
Notifications
You must be signed in to change notification settings - Fork 38
87 lines (61 loc) · 1.85 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
on:
push:
branches:
- main
tags:
- '!*'
pull_request:
branches:
- main
env:
LATEST_NODE_VERSION: 20
name: main
jobs:
test:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [18, 20]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Authenticate with GitHub package registry
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
- run: npm install
- run: npm run lint
- run: npm run update-index
- run: npm run test
- run: npm run build
- run: npm run prepare
- run: npm run test-dist
- run: npm run demo
- if: matrix.node == env.LATEST_NODE_VERSION && matrix.os == 'ubuntu-latest'
run: npm pack
- if: matrix.node == env.LATEST_NODE_VERSION && matrix.os == 'ubuntu-latest'
name: Upload package
uses: actions/upload-artifact@v4
with:
name: imagemagick-magick-wasm
path: ./*.tgz
deno:
name: Test on deno
container:
image: denoland/deno:debian
runs-on: ubuntu-latest
steps:
- run: apt update && apt install -y curl
- run: curl -fsSL https://deb.nodesource.com/setup_${{ env.LATEST_NODE_VERSION }}.x | bash -
- run: apt install -y nodejs
- uses: actions/checkout@v4
- name: Authenticate with GitHub package registry
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
- run: npm install
- run: npm run build
- run: npm install
- run: ./example.sh
working-directory: deno