forked from cerc-io/laconic-faucet
Compare commits
4 Commits
main
...
sk-test-ci
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d3f9f153f | |||
| 8caeb8c7ab | |||
| 90e3c54e6d | |||
|
|
8616cf0608 |
37
.gitea/workflows/lint-and-build.yml
Normal file
37
.gitea/workflows/lint-and-build.yml
Normal file
@ -0,0 +1,37 @@
|
||||
name: Lint and Build
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'src/**'
|
||||
push:
|
||||
# branches: [main]
|
||||
paths:
|
||||
- 'src/**'
|
||||
|
||||
jobs:
|
||||
lint-and-build:
|
||||
name: Run lint and build checks
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
|
||||
- name: Enable corepack and yarn
|
||||
run: corepack enable
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
|
||||
- name: Run ESLint
|
||||
run: yarn lint
|
||||
|
||||
- name: Run build
|
||||
run: yarn build
|
||||
@ -33,6 +33,7 @@ interface Config {
|
||||
}
|
||||
}
|
||||
|
||||
// Test lint CI
|
||||
async function main (): Promise<void> {
|
||||
// Read and parse the configuration
|
||||
const configFile = fs.readFileSync(CONFIG_PATH, 'utf-8');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user