2a13da1a6c
* chore: gitignore for lib directory * build: packageing for webpack lib build * build: webpack config * feat: expose App component with beeApiUrl parameter * build: tsconfig for library build * build: main property of package json for tsc build * refactor: rename beeUrl option to beeApiUrl * refactor: manange config class instead of process.env calls * build: babelrc config * build: babel plugins and presets for webpack build * chore: serve.js chmod * build(refactor): webpack build * refactor: number notation * chore: webpack and package config change * build: add babel preset-env * chore: prepare script also builds component lib * feat: typegen * revert: set back prepare command * build: assets loader config * feat: beeDebugApiUrl * refactor: move test files to the test folder because of typegen * feat: locked api settings * chore: depcheck ignores * chore: types check script * ci: check types * ci: publish with library * chore: add webpack as devDep * chore: locked semver * chore: remove debug logging * style: webpack config * chore: react and react-dom as dependency * chore: package-lock * fix: clean package-lock init * refactor: fix versions in package.json
79 lines
1.9 KiB
YAML
79 lines
1.9 KiB
YAML
name: Check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x]
|
|
|
|
env:
|
|
REACT_APP_BEE_HOST: https://api.test-node.staging.ethswarm.org/
|
|
REACT_APP_BEE_DEBUG_HOST: https://debug.test-node.staging.ethswarm.org/
|
|
REACT_APP_DEV_MODE: 1
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
## Try getting the node modules from cache, if failed npm ci
|
|
- uses: actions/cache@v2
|
|
id: cache-npm
|
|
with:
|
|
path: node_modules
|
|
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.OS }}-node-${{ matrix.node-version }}-${{ env.cache-name }}-
|
|
${{ runner.OS }}-node-${{ matrix.node-version }}-
|
|
|
|
- name: Install npm deps
|
|
if: steps.cache-npm.outputs.cache-hit != 'true'
|
|
run: npm ci
|
|
|
|
- name: Commit linting
|
|
uses: wagoid/commitlint-github-action@v2
|
|
|
|
- name: Code linting
|
|
run: npm run lint:check
|
|
env:
|
|
CI: true
|
|
|
|
- name: Types check
|
|
run: npm run check:types
|
|
|
|
- name: Dependency check
|
|
run: npm run depcheck
|
|
|
|
- name: Update supported Bee action
|
|
uses: ethersphere/update-supported-bee-action@v1
|
|
if: github.ref == 'refs/heads/master'
|
|
with:
|
|
token: ${{ secrets.REPO_GHA_PAT }}
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Create preview
|
|
uses: ethersphere/beeload-action@v1
|
|
with:
|
|
preview: 'true'
|
|
|
|
- name: Upload to testnet
|
|
uses: ethersphere/beeload-action@v1
|
|
with:
|
|
bee-url: https://api.gateway.testnet.ethswarm.org
|