Skip to content

Commit

Permalink
ci(github action): test fe2 in github actions
Browse files Browse the repository at this point in the history
- this duplicates the job in circleci and is for comparison only
  • Loading branch information
iainsproat committed Aug 19, 2024
1 parent e2d7172 commit 9c3ea2f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Image digest update

on:
workflow_dispatch:
push:

jobs:
test-frontend:
name: Test Frontend 2
runs-on: ubuntu-latest

permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: yarn install
run: yarn install --frozen-lockfile --immutable
- name: yarn build:public
run: yarn build:public
- name: yarn lint:ci
run: yarn lint:ci
working-directory: 'packages/frontend-2'

0 comments on commit 9c3ea2f

Please sign in to comment.