switched from go docker image to node docker image
parent
bf5e688be2
commit
a1b2f30ab3
|
@ -2,7 +2,7 @@ version: 2
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/golang:latest
|
- image: circleci/nodejs:latest
|
||||||
environment:
|
environment:
|
||||||
HUGO_VERSION: "0.53"
|
HUGO_VERSION: "0.53"
|
||||||
S3DEPLOY_VERSION: "2.3.0"
|
S3DEPLOY_VERSION: "2.3.0"
|
||||||
|
@ -23,7 +23,7 @@ jobs:
|
||||||
command: ./deploy/ci-install-s3deploy.sh
|
command: ./deploy/ci-install-s3deploy.sh
|
||||||
- run:
|
- run:
|
||||||
name: Install NPM dependencies
|
name: Install NPM dependencies
|
||||||
command: ./deploy/ci-install-node.sh
|
command: npm i -g postcss-cli autoprefixer
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: install-v1-{{ checksum ".circleci/config.yml" }}
|
key: install-v1-{{ checksum ".circleci/config.yml" }}
|
||||||
paths:
|
paths:
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
set -x
|
|
||||||
set -e
|
|
||||||
|
|
||||||
sudo apt-get install -y nodejs npm
|
|
||||||
npm i -g postcss-cli autoprefixer
|
|
Loading…
Reference in New Issue