mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
run apt update before installing libarchive-tools on ci
This commit is contained in:
parent
cb40ca3138
commit
632bc73053
1 changed files with 4 additions and 1 deletions
5
.github/workflows/nodejs.yml
vendored
5
.github/workflows/nodejs.yml
vendored
|
|
@ -42,7 +42,9 @@ jobs:
|
|||
npm_config_node_gyp: ${{ github.workspace }}${{ runner.os == 'Windows' && '\node_modules\node-gyp\bin\node-gyp.js' || '/node_modules/node-gyp/bin/node-gyp.js' }}
|
||||
- name: Install libarchive-tools
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt install libarchive-tools
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install libarchive-tools
|
||||
- name: Lint and Run Unit Tests
|
||||
run: yarn run test
|
||||
- name: Getting Build Icon
|
||||
|
|
@ -135,6 +137,7 @@ jobs:
|
|||
- name: Install
|
||||
run: |
|
||||
yarn install
|
||||
sudo apt update
|
||||
sudo apt install libarchive-tools
|
||||
- name: Compile
|
||||
run: yarn run build
|
||||
|
|
|
|||
Loading…
Reference in a new issue