Skip to content

Fix available extensions update #97

Fix available extensions update

Fix available extensions update #97

Workflow file for this run

on: [push, pull_request]
name: Build and maybe Publish
jobs:
test:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ matrix.node-version }}-${{ runner.OS }}-build-${{ hashFiles('package.json') }}
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn --immutable
publish:
name: Publish
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && ( github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' )
steps:
- uses: actions/checkout@v2
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v1
with:
path: node_modules
key: 14.x-${{ runner.OS }}-build-${{ hashFiles('package.json') }}
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Publish
uses: mikeal/merge-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}