Skip to content

Merge pull request #243 from swiftss-org/staging #411

Merge pull request #243 from swiftss-org/staging

Merge pull request #243 from swiftss-org/staging #411

Workflow file for this run

name: CI
on:
push:
branches:
- 'feat/**'
- 'ci/**'
- 'issue/**'
- 'master'
- 'staging'
- 'hotfix/**'
- 'bug/**'
- 'fix/**'
- 'refactor/**'
- 'build/**'
- 'test/**'
- 'dependabot/**'
jobs:
test:
name: Run Tests πŸ”¬
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ“₯
uses: actions/[email protected]
- name: Get yarn cache πŸ“¦
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/[email protected]
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: '12'
- run: yarn install
- run: yarn test --passWithNoTests
deploy:
name: Release πŸš€
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/staging' || github.ref == 'refs/heads/master'
needs:
- test
steps:
- name: Checkout Repository
uses: actions/[email protected]
- name: Release πŸ“Œ
if: "github.event_name == 'push'"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release