mirror of
https://github.com/kremalicious/blog.git
synced 2025-01-08 20:55:45 +01:00
test more node versions
This commit is contained in:
parent
62e95d87c3
commit
3c0424497a
23
.github/workflows/test.yml
vendored
23
.github/workflows/test.yml
vendored
@ -1,25 +1,29 @@
|
|||||||
name: Test
|
name: Test
|
||||||
|
|
||||||
on: [push]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: ['10', '12']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
- name: Cache node modules
|
- name: Cache node modules
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
restore-keys: ${{ runner.os }}-node-
|
restore-keys: ${{ runner.os }}-node-${{ matrix.node-version }}
|
||||||
|
|
||||||
- name: Cache Gatsby build output
|
- name: Cache Gatsby build output
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
@ -27,14 +31,9 @@ jobs:
|
|||||||
path: public
|
path: public
|
||||||
key: ${{ runner.os }}-public
|
key: ${{ runner.os }}-public
|
||||||
|
|
||||||
- name: Install Dependencies
|
- run: npm ci
|
||||||
run: npm ci
|
- run: npm test
|
||||||
|
- run: npm run build
|
||||||
- name: Test
|
|
||||||
run: npm test
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: npm run build
|
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
GATSBY_GITHUB_TOKEN: ${{ secrets.GATSBY_GITHUB_TOKEN }}
|
GATSBY_GITHUB_TOKEN: ${{ secrets.GATSBY_GITHUB_TOKEN }}
|
||||||
|
Loading…
Reference in New Issue
Block a user