mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Create tests.yml
This commit is contained in:
parent
35dbb7dc70
commit
55a7925b1d
1 changed files with 20 additions and 0 deletions
20
.github/workflows/tests.yml
vendored
Normal file
20
.github/workflows/tests.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, unit-tests]
|
||||
pull_request:
|
||||
branches: [main, unit-tests]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
cache: 'npm'
|
||||
cache-dependency-path: package-lock.json
|
||||
- run: npm install
|
||||
- run: npm test
|
Loading…
Add table
Reference in a new issue