1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-12-22 09:13:35 +01:00

add GitHub test workflow

This commit is contained in:
Matthias Kretschmann 2019-11-17 02:32:16 +01:00
parent 91f2df7bb9
commit 7bd04c6d88
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 39 additions and 3 deletions

39
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,39 @@
name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Cache Gatsby build output
uses: actions/cache@v1
with:
path: public
key: ${{ runner.os }}-public
- name: Install Dependencies
run: npm ci
- name: Test
run: npm test
- name: Build
run: npm run build
env:
CI: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -11,9 +11,6 @@ describe('Icon', () => {
rerender(<Icon name={'Download'} />)
expect(container.firstChild.nodeName).toBe('svg')
rerender(<Icon name={'Blog'} />)
expect(container.firstChild.nodeName).toBe('svg')
rerender(<Icon name={'Twitter'} />)
expect(container.firstChild.nodeName).toBe('svg')
})