Skip to content

Commit

Permalink
chore(Root): add type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoruiz committed Dec 18, 2023
1 parent c28e283 commit e9e73e7
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 49 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Redundant Builds
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false

- name: Setup Node
uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: 'package-lock.json'

- name: Setup Chrome
uses: browser-actions/setup-chrome@latest

- name: Install
run: |
sudo apt-get install xvfb
npm install --no-save --no-fund --no-audit --legacy-peer-deps
npx -y ultra-runner --raw --recursive prepublishOnly
- name: Lint
run: npm run lint

- name: Type Checking
run: npm run types:check

- name: Tests
run: |
npm run test:server:ci
xvfb-run --auto-servernum npm run test:client:ci
- name: Release packages
run: npx -p ./packages/sui-ci sui-ci release
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
GITHUB_EMAIL: [email protected]
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_TOKEN }}
GITHUB_USER: sui-bot
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
40 changes: 0 additions & 40 deletions .github/workflows/node.js.yml

This file was deleted.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
"test:server:watch": "npm run test:server -- --watch",
"test:e2e": "node ./packages/sui-studio/test/server/integration/static-server.js ./packages/sui-studio/test/server/integration/sample-studio/public && npx @s-ui/test-e2e --baseUrl=http://localhost:1234",
"pre-commit": "sui-lint js --staged && sui-lint sass --staged",
"pre-push": "npm run test",
"commit-msg": "validate-commit-msg"
"pre-push": "npm run test && npm run types:check",
"commit-msg": "validate-commit-msg",
"types:check": "tsc"
},
"devDependencies": {
"@babel/cli": "7",
Expand Down Expand Up @@ -79,4 +80,4 @@
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}
}
11 changes: 5 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@
"skipLibCheck": true,
"strict": true,
"target": "es5",
"types": [
"react",
"node"
]
"types": ["react", "node"]
},
"exclude": ["node_modules", "lib"],
"typeAcquisition": { "enable": true }
}
"typeAcquisition": {
"enable": true
}
}

0 comments on commit e9e73e7

Please sign in to comment.