refactor(tooling 🔧): move to npm #1289
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'build-extension' | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- 'releases/*' | |
jobs: | |
build: | |
runs-on: ${{ matrix['operating-system'] }} | |
strategy: | |
matrix: | |
node-version: [16.x] | |
operating-system: [macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use node.js ${{ matrix['node-version'] }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix['node-version'] }} | |
- name: Run install | |
run: npm install | |
- name: Run compile | |
run: npm run compile:packages | |
- name: Run build | |
run: npm run build:extension | |
- name: Run extension test | |
uses: GabrielBB/[email protected] | |
with: | |
run: npm run test:extension |