deno.land / x / jotai@v1.8.4 / .github / workflows / test-multiple-builds.yml

test-multiple-builds.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
name: Test Multiple Builds
on: push: branches: [main] pull_request: types: [opened, synchronize]
jobs: test_matrix: runs-on: ubuntu-latest strategy: fail-fast: false matrix: build: [cjs, umd] # [cjs, esm, umd, system] env: [development, production] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14' cache: yarn - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - run: yarn install --frozen-lockfile --check-files - run: yarn build - name: Use React 17 for production test if: ${{ matrix.env == 'production' }} run: | yarn add -D react@17.0.2 react-dom@17.0.2 @testing-library/react@12.1.4 - name: Patch for DEV-ONLY if: ${{ matrix.env == 'development' }} run: | sed -i~ "s/it[a-zA-Z]*('\[PRD-ONLY\]/it.skip('/" tests/*.tsx tests/*/*.tsx - name: Patch for PRD-ONLY if: ${{ matrix.env == 'production' }} run: | sed -i~ "s/it[a-zA-Z]*('\[DEV-ONLY\]/it.skip('/" tests/*.tsx tests/*/*.tsx - name: Patch for CJS if: ${{ matrix.build == 'cjs' }} run: | sed -i~ "s/<rootDir>\/src\(.*\)\.ts/<rootDir>\/dist\1.js/" package.json - name: Patch for ESM if: ${{ matrix.build == 'esm' }} run: | sed -i~ "s/<rootDir>\/src\(.*\)\.ts/<rootDir>\/dist\/esm\1.js" package.json sed -i~ "1s/^/import.meta.env=import.meta.env||{};import.meta.env.MODE='${NODE_ENV}';/" tests/*.tsx tests/*/*.tsx env: NODE_ENV: ${{ matrix.env }} - name: Patch for UMD/SystemJS if: ${{ matrix.build == 'umd' || matrix.build == 'system' }} run: | sed -i~ "s/<rootDir>\/src\(.*\)\.ts/<rootDir>\/dist\/${BUILD}\1.${NODE_ENV}.js/" package.json env: BUILD: ${{ matrix.build }} NODE_ENV: ${{ matrix.env }} - name: Patch for CJS/UMD if: ${{ matrix.build == 'cjs' || matrix.build == 'umd' }} run: | sed -i~ "s/\"target\": \"es2015\"/\"target\": \"es5\"/" .swcrc - name: Test ${{ matrix.build }} ${{ matrix.env }} run: | cat package.json yarn test:ci env: NODE_ENV: ${{ matrix.env }}
jotai

Version Info

Tagged at
a year ago