Merge pull request #367 from unstoppabledomains/REG-1379-REG-1358-tlds #1596
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
id: cache | |
with: | |
path: '**/node_modules' | |
key: uns-yarn-${{ hashFiles('**/yarn.lock') }} | |
- run: yarn install | |
if: steps.cache.outputs.cache-hit != 'true' | |
- run: yarn lint | |
- run: yarn build:package | |
- run: yarn rebuild:sandbox | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
id: cache | |
with: | |
path: '**/node_modules' | |
key: uns-yarn-${{ hashFiles('**/yarn.lock') }} | |
- run: yarn install | |
if: steps.cache.outputs.cache-hit != 'true' | |
- run: yarn compile | |
env: | |
FORCE_COLOR: 1 | |
- run: yarn test | |
env: | |
FORCE_COLOR: 1 | |
ENABLE_GAS_REPORT: true | |
- name: Print gas report | |
run: cat gas-report.txt | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
id: cache | |
with: | |
path: '**/node_modules' | |
key: uns-yarn-${{ hashFiles('**/yarn.lock') }} | |
- run: yarn install | |
if: steps.cache.outputs.cache-hit != 'true' | |
- run: yarn coverage | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
- uses: codecov/codecov-action@v1 |