forked from Ivasoft/mattermost-mobile
22 lines
353 B
YAML
22 lines
353 B
YAML
---
|
|
name: ci
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- 'release*'
|
|
pull_request:
|
|
|
|
env:
|
|
NODE_VERSION: 18.7.0
|
|
TERM: xterm
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: ci/checkout-repo
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
- name: ci/test
|
|
uses: ./.github/actions/test
|