Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EXT-1694: Add Continuous Integration for Palette extension #94

Merged
merged 4 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/palette.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Palette CI

on:
push:
paths:
- 'palette/**'

jobs:
build:
name: Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./palette
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
Dawntraoz marked this conversation as resolved.
Show resolved Hide resolved
cache: 'yarn'
- name: Install
run: yarn install
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build
1 change: 0 additions & 1 deletion palette/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"eslint-plugin-vue": "7.20.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.4.2",
"node-sass": "4.14.1",
"sass": "1.51.0",
"sass-loader": "10.0.0",
"ts-jest": "29.0.1",
Expand Down
4 changes: 1 addition & 3 deletions palette/src/components/Checkmark.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,4 @@ export default {
}
</script>

<style scoped>

</style>
<style scoped></style>
Loading
Loading