mirror of
https://github.com/fluencelabs/aqua-lib
synced 2024-12-04 15:20:23 +00:00
4cd81dbe43
* Add release-please and update PR CI * Add renovate config * Update renovate config * Fix
32 lines
524 B
YAML
32 lines
524 B
YAML
name: "ci"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
env:
|
|
FORCE_COLOR: true
|
|
|
|
jobs:
|
|
check-compiles:
|
|
name: "Check Aqua compiles"
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
registry-url: "https://registry.npmjs.org"
|
|
cache: "npm"
|
|
|
|
- run: npm i
|
|
|
|
- name: Check compilation
|
|
run: npm run compile-dry
|