mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 13:04:30 -08:00
26 lines
379 B
YAML
26 lines
379 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 'latest'
|
|
|
|
|
|
- name: test
|
|
run: |
|
|
npm install eslint
|
|
npx eslint src test
|
|
node test/run.js
|
|
node test/self_hosted_test.js
|