Skip to content

Commit

Permalink
chore: Update container
Browse files Browse the repository at this point in the history
  • Loading branch information
xhad committed Dec 12, 2023
1 parent f3ee222 commit 293941f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
tests:
name: Matchstick
runs-on: macos-latest
runs-on: ubuntu-latest
container: node:18

services:
Expand All @@ -32,17 +32,16 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: ./package-lock.json
cache: "yarn"

- name: Install dependencies
run: npm install --frozen-lockfile
run: yarn install --frozen-lockfile

- name: Run codegen
run: npm run codegen
run: yarn codegen

- name: Run build
run: npm run build:local
run: yarn build:local

- name: Run tests
run: npm test
run: yarn test

0 comments on commit 293941f

Please sign in to comment.