diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1c1d1169..1744111e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -8,9 +8,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js 16.x - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 16.x - name: Install Redrun @@ -23,7 +23,7 @@ jobs: id: build run: > redrun build - + echo "::set-output name=version::$(grep '"version":' package.json -m1 | cut -d\" -f4)" - name: Set up QEMU uses: docker/setup-qemu-action@v1 diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 21648f33..ad66b32b 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -11,10 +11,11 @@ jobs: node-version: - 16.x - 18.x + - 19.x steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install Redrun @@ -23,7 +24,6 @@ jobs: run: npm install - name: Lint run: redrun fix:lint - - uses: actions/cache@v3 with: path: | @@ -33,17 +33,14 @@ jobs: ~/.cargo/git/db/ target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - - name: Typos Install run: cargo install typos-cli || echo 'already installed' - - name: Typos run: typos --write-changes - - name: Commit fixes - uses: EndBug/add-and-commit@v7 + uses: EndBug/add-and-commit@v9 with: - message: 'chore: ${{ env.NAME }}: actions: lint ☘️' + message: "chore: ${{ env.NAME }}: actions: lint ☘️" - name: Build run: redrun build - name: Test diff --git a/css/main.css b/css/main.css index 6008c2a9..ec35bff3 100644 --- a/css/main.css +++ b/css/main.css @@ -1,8 +1,8 @@ -@import './urls.css'; -@import './reset.css'; -@import './style.css'; -@import './icons.css'; -@import './help.css'; -@import './query.css'; -@import './supports.css'; +@import url('./urls.css'); +@import url('./reset.css'); +@import url('./style.css'); +@import url('./icons.css'); +@import url('./help.css'); +@import url('./query.css'); +@import url('./supports.css');