Migrate CI from TravisCI to GitHub Actions #1004
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -5,14 +5,12 @@ on: [push, pull_request]
|
|||||||
jobs:
|
jobs:
|
||||||
website:
|
website:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Use Node.js 8
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 8.x
|
node-version: 12.x
|
||||||
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --frozen-lockfile --ignore-scripts
|
run: yarn install --frozen-lockfile --ignore-scripts
|
||||||
working-directory: website
|
working-directory: website
|
||||||
|
Reference in New Issue
Block a user
AHHHH Node 8 EOL was last year. Let's at least use 10 (or 12)
I just copied the Travis job ¯\_(ツ)_/¯
When I tried upgrading to a more recent version of node it broke the
yarn build
step :(