From 30eebe246ec3b2040d8dca7c408f4305219b2d50 Mon Sep 17 00:00:00 2001 From: m5r Date: Fri, 20 Aug 2021 08:33:28 +0800 Subject: [PATCH] add github actions to lint, test, compile and deploy to railway --- .github/workflows/main.yml | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..383bb0a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,54 @@ +name: Deploy to Railway + +on: [push, pull_request] + +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 16 + - run: npm install + - run: npm run lint + + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 16 + - run: npm install + - run: npm test + + build: + name: Compile + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 16 + - run: npm install + - run: npm run build + env: + QUIRREL_BASE_URL: "doesntmatter.shellphone.app" + + deploy: + if: contains('refs/heads/master refs/heads/production', github.ref) + needs: [lint, test, build] + name: Deploy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 16 + - run: npm i -g @railway/cli + - run: railway up + env: + RAILWAY_TOKEN: "${{ github.ref }} === 'refs/heads/master' ? '${{ secrets.RAILWAY_TOKEN_PROD }}' : '${{ secrets.RAILWAY_TOKEN_DEV }}'"