Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Jul 8, 2024
1 parent 5b7082b commit d8b1116
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build

on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: read

jobs:
build:
runs-on: [ubuntu-latest]

name: Build Material Icons Browser Extension

steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
persist-credentials: false

- name: Install dependencies πŸ“¦
run: npm ci

- name: Check code quality πŸ”
run: npm run lint

- name: Build extension πŸ› 
run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d8b1116

Please sign in to comment.