Skip to content

Commit

Permalink
CI: add PostCSS and update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
deathaxe committed Oct 4, 2024
1 parent 172ec66 commit 78a46ea
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci-syntax-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,22 @@ jobs:
default_packages: v4131
steps:
- name: Checkout Default Packages
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: sublimehq/Packages
ref: ${{ matrix.default_packages }}
path: st_syntax_tests/Data/Packages

- name: Delete default package tests
run: |-
run: |
find st_syntax_tests/Data/Packages/*/ -type f -name 'syntax_test*' -exec rm -v '{}' \;
- name: Prepare dummy syntaxes
run: |-
run: |
packages=st_syntax_tests/Data/Packages
scopes=(
source.less
source.postcss
source.sass
source.scss
source.stylus
Expand All @@ -65,12 +66,12 @@ jobs:
done
- name: Checkout Astro
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: st_syntax_tests/Data/Packages/Astro

- name: Run Syntax Tests for Sublime Text ${{ matrix.build }}
run: |-
run: |
if [[ "${{ matrix.build }}" == "latest" ]]; then
wget -O st_syntax_tests.tar.xz https://download.sublimetext.com/latest/dev/linux/x64/syntax_tests
else
Expand Down

0 comments on commit 78a46ea

Please sign in to comment.