mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
17 lines
265 B
YAML
Executable File
17 lines
265 B
YAML
Executable File
name: Validate code
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- run: npm ci
|
|
- run: npm test |