Skip to content

Update glacier API link from dev to production #177

Update glacier API link from dev to production

Update glacier API link from dev to production #177

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
CI: true
jobs:
Build:
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: yarn
node-version: ${{ matrix.node-version }}
- name: Create .npmrc
run: echo '//registry.npmjs.org/:_authToken= ${{ secrets.NPM_TOKEN }}' >> .npmrc
- run: yarn install --frozen-lockfile
- run: yarn build