From ed3f7c686b02dadcffdcd61a32c0c2ee756859e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Wed, 13 Jan 2021 17:16:10 +0900 Subject: [PATCH] ci: revert --- .github/workflows/testing.yml | 42 +++++++++++++++++------------------ 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 8f6e23a..3e33475 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -18,27 +18,27 @@ jobs: run: yarn lint env: CI: true - # build: - # name: Build - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v1 - # - name: install node v14 - # uses: actions/setup-node@v1 - # with: - # node-version: 14 - # - name: yarn install - # run: yarn install - # - name: Generate RSA Key Pair - # run: ssh-keygen -b 2048 -t rsa -f public -q -P "" & ssh-keygen -b 2048 -e -m pem -f public -q -P "" > private.key & mv public public.pem - # - name: Setup environments - # run: mv .env.demo.local .env.production.local & echo 'MYSQL_ROOT_PASSWORD=YOUSHALLNOTPASS' > .env - # - name: Create needed files - # run: echo '{"tester":"DEMO_KEY"}' > secret.json - # - name: Build - # run: yarn build - # env: - # CI: true + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: install node v14 + uses: actions/setup-node@v1 + with: + node-version: 14 + - name: yarn install + run: yarn install + - name: Generate RSA Key Pair + run: ssh-keygen -b 2048 -t rsa -f public -q -P "" & ssh-keygen -b 2048 -e -m pem -f public -q -P "" > private.key & mv public public.pem + - name: Setup environments + run: mv .env.demo.local .env.production.local & echo 'MYSQL_ROOT_PASSWORD=YOUSHALLNOTPASS' > .env + - name: Create needed files + run: echo '{"tester":"DEMO_KEY"}' > secret.json + - name: Build + run: yarn build + env: + CI: true test: needs: - ESLint