Skip to content

Commit

Permalink
re-enable build in CI with nodejs 22
Browse files Browse the repository at this point in the history
  • Loading branch information
tophf committed Oct 27, 2024
1 parent 7e20c31 commit f74fab8
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '>=20.6.0'
node-version: '22'
- run: npm install
- run: npm test

# - name: Get REV
# id: rev
# run: echo "REV=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
#
# - run: npm run build-mv3
#
# - uses: actions/upload-artifact@v4
# with:
# name: 'Stylus-test-mv3-${{ steps.rev.outputs.REV }}'
# path: 'dist/*'
# if-no-files-found: error
- name: Get REV
id: rev
run: echo "REV=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- run: npm run build-mv3

- uses: actions/upload-artifact@v4
with:
name: 'Stylus-test-mv3-${{ steps.rev.outputs.REV }}'
path: 'dist/*'
if-no-files-found: error

0 comments on commit f74fab8

Please sign in to comment.