2022-07-23 02:20:11 +00:00
|
|
|
name: validate
|
2021-01-31 19:48:32 +00:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-07-23 02:20:11 +00:00
|
|
|
run:
|
2021-01-31 19:48:32 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
|
|
|
node-version: "14.12.0"
|
|
|
|
- run: npm ci
|
2022-08-27 06:27:45 +00:00
|
|
|
- run: npx ropm install
|
2021-07-09 20:09:53 +00:00
|
|
|
- run: npm run validate
|
|
|
|
- run: npm run check-formatting
|