2
1
mirror of https://github.com/Thream/api.git synced 2024-07-21 03:38:31 +02:00
api/.github/workflows/test.yml

31 lines
523 B
YAML
Raw Normal View History

2021-10-24 04:06:16 +02:00
name: 'Test'
on:
push:
branches: [develop]
2021-10-24 04:06:16 +02:00
pull_request:
branches: [master, develop]
jobs:
test:
2022-08-23 23:57:52 +02:00
runs-on: 'ubuntu-latest'
2021-10-24 04:06:16 +02:00
steps:
- uses: 'actions/checkout@v3.0.0'
2021-10-24 04:06:16 +02:00
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.0.0'
2021-10-24 04:06:16 +02:00
with:
node-version: '16.x'
2021-10-24 04:18:18 +02:00
cache: 'npm'
2021-10-24 04:06:16 +02:00
- name: 'Install'
2021-10-24 04:18:18 +02:00
run: 'npm install'
2021-10-24 04:06:16 +02:00
- name: 'Build'
run: 'npm run build'
- run: 'cp .env.example .env'
2021-10-24 04:06:16 +02:00
- name: 'Test'
run: 'npm run test'