mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
20 lines
394 B
YAML
20 lines
394 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main, unit-tests]
|
|
pull_request:
|
|
branches: [main, unit-tests]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '18'
|
|
cache: 'npm'
|
|
cache-dependency-path: package-lock.json
|
|
- run: npm install
|
|
- run: npm test
|